Skip to content

Commit c9838ab

Browse files
authored
Fixed PEP8 issues
1 parent 7c7a7a9 commit c9838ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/io/parquet.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ def write(self, df, path, compression='snappy',
123123
table, path, compression=compression, **kwargs)
124124

125125
else:
126-
if 'partition_cols' in kwargs and len(kwargs['partition_cols']) > 0:
126+
if 'partition_cols' in kwargs and \
127+
len(kwargs['partition_cols']) > 0:
127128
table = self.api.Table.from_pandas(df)
128129
self.api.parquet.write_to_dataset(
129130
table, path, compression=compression,

0 commit comments

Comments
 (0)