mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-02-23 05:35:44 -05:00
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,
|
||||
inner_env: dict[str, str] = {},
|
||||
outer_env: dict[str, str] = os.environ.copy() | {'QEMU_LD_PREFIX': '/usr/aarch64-linux-gnu'},
|
||||
attach_tty: str = False,
|
||||
capture_output: str = False,
|
||||
attach_tty: bool = False,
|
||||
capture_output: bool = False,
|
||||
cwd: str = None,
|
||||
fail_inactive: bool = True,
|
||||
stdout=None) -> subprocess.CompletedProcess:
|
||||
|
|
Loading…
Add table
Reference in a new issue