Skip to content

Fix anti-pattern PYL-R0123 #53

@reactive-firewall

Description

@reactive-firewall

Fix anti-pattern PYL-R0123:

if args is None or args is [None]:

should be something like:

    if (args is None) or (args == [None]):

Metadata

Metadata

Labels

LinterAny linter tool or setting file enhancementsPython LangChanges to Python source codeenhancement

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions