-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
only trigger DUO116 when shell=True #31
Conversation
Signed-off-by: Thomas Sjögren <[email protected]>
Hi @konstruktoid, thanks for the improvements. I originally went with checking if the kwarg is present because it defaults to What do you think of checking |
Signed-off-by: Thomas Sjögren <[email protected]>
Hi @mschwager, I created |
Signed-off-by: Thomas Sjögren <[email protected]>
|
Thanks for the updates, but In other words, the logic would be: anytime |
Signed-off-by: Thomas Sjögren <[email protected]>
Signed-off-by: Thomas Sjögren <[email protected]>
Good point, I get your logic there. |
Replying to myself:
Updated: We won't catch line 14, but I'm fine with that. |
Signed-off-by: Thomas Sjögren <[email protected]>
Nice! Thanks for these improvements! |
Signed-off-by: Thomas Sjögren <[email protected]>
Using
shell=False
, to make sure default arguments are set, would triggerDUO116
:subprocess module with shell=True
This PR allows
shell=False
.Signed-off-by: Thomas Sjögren [email protected]