aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/commands.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2023-11-02 15:38:49 +0300
committerFrederick Muriuki Muriithi2023-11-02 15:38:49 +0300
commitc5d4a6f8104af1eaa0c9dfd8ea7025a673de731e (patch)
tree6b6b8c4ee01e62758867b66d19ef6b383e94c78b /gn_auth/commands.py
parent3f5b7ef490b82ab79e3f72ebc5546c9a4118a920 (diff)
downloadgn-auth-c5d4a6f8104af1eaa0c9dfd8ea7025a673de731e.tar.gz
mypy: Fix typing errors.
Diffstat (limited to 'gn_auth/commands.py')
-rw-r--r--gn_auth/commands.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/gn_auth/commands.py b/gn_auth/commands.py
index cc00413..02bed10 100644
--- a/gn_auth/commands.py
+++ b/gn_auth/commands.py
@@ -44,7 +44,9 @@ Returns the name of the specific redis hash for the specific task.
conn.hset(name=unique_id, key="env", value=json.dumps(env))
return unique_id
-def run_cmd(cmd: str, success_codes: Tuple = (0,), env: str = None) -> Dict:
+def run_cmd(cmd: str,
+ success_codes: Tuple = (0,),
+ env: Optional[str] = None) -> Dict:
"""Run CMD and return the CMD's status code and output as a dict"""
parsed_cmd = json.loads(cmd)
parsed_env = (json.loads(env) if env is not None else None)