aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils.py')
-rw-r--r--src/utils.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/utils.py b/src/utils.py
deleted file mode 100644
index ac07bf7..0000000
--- a/src/utils.py
+++ /dev/null
@@ -1,5 +0,0 @@
-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]