-
Notifications
You must be signed in to change notification settings - Fork 2k
Closed
Labels
bugSomething isn't workingSomething isn't workingruleImplementing or modifying a lint ruleImplementing or modifying a lint rule
Description
Summary
When using a tuple (i.e., (...,)), it doesn't give S607 (Playground):
import subprocess
subprocess.run(("echo", "foo"))but using a list (i.e., [..., ...]) does (Playground):
import subprocess
subprocess.run(["echo", "foo"])I mentioned multiple values, because if there's only one element in the tuple, it'll give S607 (Playground):
import subprocess
subprocess.run(("echo"))Version
0.15.7
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingruleImplementing or modifying a lint ruleImplementing or modifying a lint rule