Skip to content

FYI - small bug #1

@liamzebedee

Description

@liamzebedee

This has no functional effect on the code, because it works anyways

But these lines work for the wrong reason:

elif j == 2 or 3:
a = primer_volume

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions