Skip to content

Commit a1a7cab

Browse files
committed
black format materialization
1 parent 434ca59 commit a1a7cab

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

servicex_analysis_utils/materialization.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ def to_awk(deliver_dict, dask=False, iterator=False, **kwargs):
5454

5555
for sample, paths in deliver_dict.items():
5656
if not paths:
57-
raise RuntimeError(f"Delivered result file path list for {sample} is empty.")
57+
raise RuntimeError(
58+
f"Delivered result file path list for {sample} is empty."
59+
)
5860
# Check file type
5961
f_type = str(paths[0])
6062
if ".root" in f_type:
@@ -69,7 +71,7 @@ def to_awk(deliver_dict, dask=False, iterator=False, **kwargs):
6971

7072
try:
7173
if dask:
72-
if is_root == True:
74+
if is_root == True:
7375
# Use uproot.dask to handle URLs and local paths lazily
7476
awk_arrays[sample] = uproot.dask(paths, library="ak", **kwargs)
7577
else:

0 commit comments

Comments
 (0)