Skip to content

Commit

Permalink
Add extra space for linting
Browse files Browse the repository at this point in the history
  • Loading branch information
wm75 committed Oct 21, 2024
1 parent e79ec30 commit e4d25b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3983,7 +3983,7 @@ def add_copied_value_to_new_elements(new_label, dce_object):
raise exceptions.MessageException("Column < 1 specified for relabel mapping file. Column count starts at 1.")
new_labels_dict = {}
try:
for i, line in enumerate(new_labels, 1): # noqa: B007
for i, line in enumerate(new_labels, 1): # noqa: B007
cols = line.strip().split("\t")
new_labels_dict[cols[from_index]] = cols[to_index]
except IndexError:
Expand Down

0 comments on commit e4d25b0

Please sign in to comment.