Skip to content
Snippets Groups Projects
Commit 961ec90c authored by Tomasz Bold's avatar Tomasz Bold
Browse files

fixed flake8 that were missed before

parent c089398e
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ def get_flag_item(chainName, L1itemsChainParts, groups): ...@@ -7,7 +7,7 @@ def get_flag_item(chainName, L1itemsChainParts, groups):
L1item = 'L1_'+chainName.split('_L1')[-1] L1item = 'L1_'+chainName.split('_L1')[-1]
L1thresholds = L1item.split('_')[1:] L1thresholds = L1item.split('_')[1:]
L1itemsChainParts = [L1item, L1thresholds ] L1itemsChainParts = [L1item, L1thresholds ]
elif L1itemsChainParts[0] == None: elif L1itemsChainParts[0] is None:
L1item = 'L1_'+chainName.split('_L1')[-1] L1item = 'L1_'+chainName.split('_L1')[-1]
L1itemsChainParts[0] = L1item L1itemsChainParts[0] = L1item
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment