Skip to content

Commit

Permalink
ruff formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcNuebel committed Jan 14, 2024
1 parent a9d3df5 commit 39cf06b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py-polars/polars/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class StringCacheMismatchError(PolarsError): # type: ignore[no-redef, misc]
>>> pl.DataFrame(
... [
... pl.Series(["a", "b", "c"], dtype=pl.Categorical),
... pl.Series(["c", "b", "b"], dtype=pl.Categorical)
... pl.Series(["c", "b", "b"], dtype=pl.Categorical),
... ]
... ).transpose()
polars.exceptions.StringCacheMismatchError: cannot compare categoricals coming
Expand All @@ -101,7 +101,7 @@ class StringCacheMismatchError(PolarsError): # type: ignore[no-redef, misc]
... pl.DataFrame(
... [
... pl.Series(["a", "b", "c"], dtype=pl.Categorical),
... pl.Series(["c", "b", "b"], dtype=pl.Categorical)
... pl.Series(["c", "b", "b"], dtype=pl.Categorical),
... ]
... ).transpose()
shape: (2, 3)
Expand Down

0 comments on commit 39cf06b

Please sign in to comment.