subprocess-run-check / W1510#

Message emitted:

Using subprocess.run without explicitly set check is not recommended.

Description:

The check parameter should always be used with explicitly set `check` keyword to make clear what the error-handling behavior is.https://docs.python.org/3/library/subprocess.html#subprocess.run

Correct code:

# This is a placeholder for correct code for this message.

Additional details:

You can help us make the doc better by contributing !

Created by the stdlib checker.