Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
zmbc committed Aug 5, 2023
1 parent 4bfdecf commit f872231
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions modin/pandas/test/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -1561,10 +1561,11 @@ def test_read_parquet_pandas_index(self, engine, filters):
# These private APIs broke in pandas 2.
# https://github.com/dask/fastparquet/commit/cf60ae0e9a9ca57afc7a8da98d8c0423db1c0c53
if (
col == "idx_categorical" and
engine == "fastparquet" and
version.parse(fastparquet.__version__) < version.parse("2023.1.0") and
version.parse(pandas.__version__) >= version.parse("2.0.0")
col == "idx_categorical"
and engine == "fastparquet"
and version.parse(fastparquet.__version__)
< version.parse("2023.1.0")
and version.parse(pandas.__version__) >= version.parse("2.0.0")
):
continue

Expand Down

0 comments on commit f872231

Please sign in to comment.