Chroot.run_cmd(): fix parameter type annotations
This commit is contained in:
parent
700c914855
commit
ddab25b030
1 changed files with 2 additions and 2 deletions
|
@ -351,8 +351,8 @@ class Chroot:
|
||||||
script: str,
|
script: str,
|
||||||
inner_env: dict[str, str] = {},
|
inner_env: dict[str, str] = {},
|
||||||
outer_env: dict[str, str] = os.environ.copy() | {'QEMU_LD_PREFIX': '/usr/aarch64-linux-gnu'},
|
outer_env: dict[str, str] = os.environ.copy() | {'QEMU_LD_PREFIX': '/usr/aarch64-linux-gnu'},
|
||||||
attach_tty: str = False,
|
attach_tty: bool = False,
|
||||||
capture_output: str = False,
|
capture_output: bool = False,
|
||||||
cwd: str = None,
|
cwd: str = None,
|
||||||
fail_inactive: bool = True,
|
fail_inactive: bool = True,
|
||||||
stdout=None) -> subprocess.CompletedProcess:
|
stdout=None) -> subprocess.CompletedProcess:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue