Skip to content

Commit

Permalink
ruff formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcNuebel authored and Marc committed Jan 23, 2024
1 parent 75bfb0d commit 197e0bc
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 197e0bc

Please sign in to comment.