Skip to content

Commit d1c2eed

Browse files
committed
Fix pylint error
1 parent 5a92507 commit d1c2eed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parquet/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def println(value):
134134
println(" Version: {0}".format(footer.version))
135135
println(" Num Rows: {0}".format(footer.num_rows))
136136
println(" k/v metadata: ")
137-
if footer.key_value_metadata and len(footer.key_value_metadata) > 0:
137+
if footer.key_value_metadata:
138138
for item in footer.key_value_metadata:
139139
println(" {0}={1}".format(item.key, item.value))
140140
else:

0 commit comments

Comments
 (0)