aboutsummaryrefslogtreecommitdiffstats
path: root/app/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/utils.py')
-rw-r--r--app/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/utils.py b/app/utils.py
index f0c175f..6deb147 100644
--- a/app/utils.py
+++ b/app/utils.py
@@ -10,7 +10,7 @@ ItemDict: TypeAlias = dict[str, ItemDictValue]
def evaluate_env_ref(v: Any) -> str:
if type(v) == str and v.startswith("${") and v.endswith("}"):
- return os.environ[v[2:-1]] # type: ignore
+ return os.environ[v[2:-1]]
else:
return v