mirror of
https://github.com/chatmail/relay.git
synced 2026-05-17 12:28:58 +00:00
lint: fix 1 issue
This commit is contained in:
@@ -217,7 +217,9 @@ class Out:
|
|||||||
output = subprocess.STDOUT
|
output = subprocess.STDOUT
|
||||||
else:
|
else:
|
||||||
output = subprocess.DEVNULL
|
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):
|
def check_call(self, arg, env=None, quiet=False):
|
||||||
if not quiet:
|
if not quiet:
|
||||||
|
|||||||
Reference in New Issue
Block a user