-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
This has no functional effect on the code, because it works anyways
But these lines work for the wrong reason:
Slowpoke/Colony_PCR/colony_PCR_workflow_Flex_v2_for_HT.py
Lines 123 to 124 in 62648d2
| elif j == 2 or 3: | |
| a = primer_volume |
Slowpoke/Colony_PCR/colony_PCR_workflow_OT2.py
Lines 106 to 107 in 62648d2
| elif j == 2 or 3: | |
| a = 1 |
It should be:
elif j == 2 or j == 3:
They only work because or 3 evaluates to a truth-ful value
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels