Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
zbilodea committed Jul 3, 2024
1 parent d169277 commit 94bfa80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hepconvert/copy_root.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def copy_root(
tqdm = _utils.check_tqdm()
progress_bar = tqdm.tqdm(desc="Trees copied")
progress_bar.reset(total=number_of_items)
for t in trees:
for t in trees: # pylint: disable=too-many-nested-blocks
tree = f[t]
count_branches = get_counter_branches(tree)
kb = filter_branches(tree, keep_branches, drop_branches, count_branches)
Expand Down

0 comments on commit 94bfa80

Please sign in to comment.