From 557c39da5fbc23a3b51c807747d9186de3595906 Mon Sep 17 00:00:00 2001 From: "d.kovalenko" Date: Sun, 13 Sep 2026 18:28:10 +0300 Subject: [PATCH] OsOperations::exec_command is corrected (bad assert) --- src/os_ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os_ops.py b/src/os_ops.py index c7d235c..fbaa351 100644 --- a/src/os_ops.py +++ b/src/os_ops.py @@ -106,7 +106,7 @@ def exec_command( assert type(get_process) is bool assert type(ignore_errors) is bool assert exec_env is None or type(exec_env) is dict - assert cwd is None or type(cwd) is dict + assert cwd is None or type(cwd) is str RaiseError.MethodIsNotImplemented(__class__, "exec_command") def build_path(self, a: str, *parts: str) -> str: