diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2023-09-13 14:30:45 +0300 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2023-09-13 14:30:45 +0300 |
| commit | fa2c9120c47ce61f61444c62fda637f3ed2678ed (patch) | |
| tree | b0b4242db2c60f3d9a9b0f094ce6f4c65739b7bc /app/utils.py | |
| parent | b858cad9ad70ea6dd307559b3169730097fd6c29 (diff) | |
Remove # type: ignore comments
Diffstat (limited to 'app/utils.py')
| -rw-r--r-- | app/utils.py | 2 |
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 |
