From fa2c9120c47ce61f61444c62fda637f3ed2678ed Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Wed, 13 Sep 2023 14:30:45 +0300 Subject: Remove # type: ignore comments --- app/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/utils.py') 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 -- cgit v1.3