Skip to content

Commit 1663529

Browse files
committed
Fix typo in elif
1 parent e721f34 commit 1663529

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

servicex_analysis_utils/materialization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def to_awk(deliver_dict, dask=False, iterator=False, **kwargs):
5454
f_type = str(paths[0])
5555
if ".root" in f_type:
5656
is_root = True
57-
elif ".parquet" or ".pq" in f_type:
57+
elif ".parquet" in f_type or ".pq" in f_type:
5858
is_root = False
5959
# ServiceX supports only root/parquet in transformed files
6060
else:

0 commit comments

Comments
 (0)