Skip to content

Commit a577102

Browse files
committed
Fix linting issue
1 parent 41c2828 commit a577102

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/io/test_parquet.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,9 @@ def test_ignore_partition_cols_lt_070(self, pa_lt_070, df_full):
497497
partition_cols = ['bool', 'int']
498498
pa = pa_lt_070
499499
df = df_full
500-
check_round_trip(df, pa, write_kwargs={'partition_cols': partition_cols})
500+
check_round_trip(df, pa,
501+
write_kwargs={'partition_cols': partition_cols})
502+
501503

502504
class TestParquetFastParquet(Base):
503505

0 commit comments

Comments
 (0)