-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Labels
LinterAny linter tool or setting file enhancementsAny linter tool or setting file enhancementsPython LangChanges to Python source codeChanges to Python source codeenhancement
Milestone
Description
Fix anti-pattern PYL-R0123:
python-repo/tests/test_usage.py
Line 60 in 470ee5f
if args is None or args is [None]: |
should be something like:
if (args is None) or (args == [None]):
Metadata
Metadata
Assignees
Labels
LinterAny linter tool or setting file enhancementsAny linter tool or setting file enhancementsPython LangChanges to Python source codeChanges to Python source codeenhancement