format: clean up leftovers

This commit is contained in:
InsanePrawn 2022-02-18 06:46:05 +01:00
parent 7a324555da
commit 0c38fabf11
3 changed files with 3 additions and 3 deletions

View file

@ -221,7 +221,6 @@ class Chroot(AbstractChroot):
if outer_env is None:
outer_env = os.environ.copy()
env_cmd = ['/usr/bin/env'] + [f'{shell_quote(key)}={shell_quote(value)}' for key, value in inner_env.items()]
run_func = subprocess.call if attach_tty else subprocess.run
kwargs: dict = {
'env': outer_env,
}