Skip to content

Commit

Permalink
Remove Categorical from the set.
Browse files Browse the repository at this point in the history
  • Loading branch information
pythonspeed committed May 23, 2024
1 parent b47ea7c commit 9a17e80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/polars/io/delta.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ def _check_if_delta_available() -> None:

def _check_for_unsupported_types(dtypes: list[DataType]) -> None:
schema_dtypes = unpack_dtypes(*dtypes)
unsupported_types = {Time, Categorical, Null}
unsupported_types = {Time, Null}
overlap = schema_dtypes & unsupported_types

if overlap:
Expand Down

0 comments on commit 9a17e80

Please sign in to comment.