aboutsummaryrefslogtreecommitdiffstats
path: root/app/utils.py
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2023-09-01 19:31:47 +0300
committerJan Tuomi <jans.tuomi@gmail.com>2023-09-10 19:01:00 +0300
commit398799de0c1826c3544eb6eec681fa48096932a0 (patch)
treec2a2cf7fcf30276ffc432e7a1750efd6b7d2c8bf /app/utils.py
parentb7f129b29b8b8103336bfae265b3d5a0bc5ea03a (diff)
Refactor
Diffstat (limited to 'app/utils.py')
-rw-r--r--app/utils.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/utils.py b/app/utils.py
new file mode 100644
index 0000000..ac07bf7
--- /dev/null
+++ b/app/utils.py
@@ -0,0 +1,5 @@
+def get_param(key: str, params: dict[str, str]) -> str:
+ if key not in params:
+ raise Exception(f"no {key} field in config entry: " + str(params))
+
+ return params[key]