Closed DetachHead closed 6 months ago
Hello @DetachHead! Thanks for updating this PR. We checked the lines you've touched for PEP 8 issues, and found:
nodejs_wheel/executable.py
:Line 83:80: E501 line too long (86 > 79 characters) Line 132:80: E501 line too long (86 > 79 characters) Line 186:80: E501 line too long (86 > 79 characters)
return_completed_process
argument isn't specified, which was causing it to resolve to the wrong overload:args
toIterable[str]
instead oflist[str]
, which is more flexible. for example, when wrapping it with a function that passes it a tuple: