bugfix to small caps handling

This commit is contained in:
Benjamin Harder
2025-06-14 11:54:39 +02:00
parent fd90776b28
commit 82306a3d8a

View File

@@ -71,7 +71,8 @@ def _load_from_env() -> dict:
section_config = {}
for key in keys:
raw_value = os.getenv(key) or os.getenv(key.lower())
env_key = key if os.getenv(key) is not None else key.lower()
raw_value = os.getenv(env_key)
if raw_value is None:
continue