lint: fix 1 issue

This commit is contained in:
missytake 2023-12-20 15:42:54 +01:00
parent 32238e99ab
commit d333cfdd5a

View File

@ -217,7 +217,9 @@ class Out:
output = subprocess.STDOUT
else:
output = subprocess.DEVNULL
return subprocess.check_output(arg, shell=True, timeout=timeout, stderr=output).decode()
return subprocess.check_output(
arg, shell=True, timeout=timeout, stderr=output
).decode()
def check_call(self, arg, env=None, quiet=False):
if not quiet: