Skip to content

Commit 10a44f1

Browse files
committed
actually fix it
1 parent cb535fe commit 10a44f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

installation_and_upgrade/ibex_install_utils/run_process.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ class RunProcess:
1616

1717
def __init__(
1818
self,
19-
working_dir: Optional[Union[str | bytes | os.PathLike[str] | os.PathLike[bytes]]],
19+
working_dir: Optional[Union[str, bytes, os.PathLike[str], os.PathLike[bytes]]],
2020
executable_file: str,
2121
executable_directory: Optional[
22-
Union[str | bytes | os.PathLike[str] | os.PathLike[bytes]]
22+
Union[str, bytes, os.PathLike[str], os.PathLike[bytes]]
2323
] = None,
2424
press_any_key: bool = False,
2525
prog_args: Optional[List[str]] = None,
2626
capture_pipes: bool = True,
27-
std_in: Optional[int, IO] = None,
27+
std_in: Optional[Union[int, IO]] = None,
2828
log_command_args: bool = True,
2929
expected_return_codes: Optional[Union[int, List[int]]] = None,
3030
capture_last_output: bool = False,

0 commit comments

Comments
 (0)