breakpoint_shell: make work_dir optional
All checks were successful
checks-impure / test (pull_request) Successful in 1m34s
checks / test (pull_request) Successful in 2m37s

This commit is contained in:
Jörg Thalheim 2023-11-10 12:40:51 +01:00
parent 13b685f7af
commit 85a06d47e5

View File

@ -51,7 +51,7 @@ def breakpoint_container(
def breakpoint_shell(
work_dir: Path,
work_dir: Path = Path(os.getcwd()),
env: Optional[Dict[str, str]] = None,
cmd: Optional[List[str]] = None,
) -> None: