Skip to content

Commit b655fcc

Browse files
style: pre-commit fixes
1 parent 280dc3e commit b655fcc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/uproot/models/RNTuple.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,9 @@ def read_col_pages(self, ncol, cluster_range, dtype_byte, pad_missing_ele=False)
502502
or dtype_byte == uproot.const.rntuple_col_type_to_num_dict["splitindex32"]
503503
):
504504
# Extract the last offset values:
505-
last_elements = [arr[-1] for arr in arrays[:-1]] # First value always zero, therefore skip first arr.
505+
last_elements = [
506+
arr[-1] for arr in arrays[:-1]
507+
] # First value always zero, therefore skip first arr.
506508
# Compute cumulative sum using itertools.accumulate:
507509
last_offsets = [*list(accumulate(last_elements))]
508510
# Add the offsets to each array

0 commit comments

Comments
 (0)