chore: cleanup pylint violations (#26252)
* chore: cleanup pylint violations * chore: cleanup pylint violatins
This commit is contained in:
parent
4c40ce09fd
commit
2a392c11f8
5 changed files with 55 additions and 21 deletions
|
@ -15,5 +15,12 @@ args = [cmd, "run",
|
|||
try:
|
||||
subprocess.check_output(args, stderr=subprocess.STDOUT)
|
||||
except subprocess.CalledProcessError as e:
|
||||
print("NPM script '" + sys.argv[2] + "' failed with code '" + str(e.returncode) + "':\n" + e.output)
|
||||
print(
|
||||
"NPM script '"
|
||||
+ sys.argv[2]
|
||||
+ "' failed with code '"
|
||||
+ str(e.returncode)
|
||||
+ "':\n"
|
||||
+ e.output
|
||||
)
|
||||
sys.exit(e.returncode)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue