Skip to content

Commit

Permalink
Fix black issue
Browse files Browse the repository at this point in the history
  • Loading branch information
uvchik committed Feb 15, 2021
1 parent f5aef80 commit 8876d5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deflex/results.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def change_subtag(node, changes):
if agg[2] < 0:
val = "_".join(node.label.subtag.split("_")[: agg[2]])
elif agg[2] > 0:
val = "_".join(node.label.subtag.split("_")[agg[2]:])
val = "_".join(node.label.subtag.split("_")[agg[2] :])
else:
val = agg[2]
return val
Expand Down

0 comments on commit 8876d5a

Please sign in to comment.