We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60953e2 commit 91aba3cCopy full SHA for 91aba3c
merge.py
@@ -20,7 +20,7 @@ def run(*args: str | Path, **kwargs) -> subprocess.CompletedProcess:
20
"""Run a shell command with subprocess.run() with check=True and
21
encoding="UTF-8".
22
"""
23
- return subprocess.run(list(args), encoding="UTF-8", check=True, **kwargs)
+ return subprocess.run(list(args), encoding='UTF-8', check=True, **kwargs)
24
25
26
def parse_args():
0 commit comments