Skip to content

Commit 8059a67

Browse files
committed
Update the initialization to be not case-sensitive
1 parent 18f42d8 commit 8059a67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/superannotate/lib/app/interface/base_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def _retrieve_configs_from_ini(path: Path) -> typing.Union[ConfigEntity]:
8888
config_parser.read(path)
8989
config_data = {}
9090
for key in config_parser["DEFAULT"]:
91-
config_data[key] = config_parser["DEFAULT"][key]
91+
config_data[key.upper()] = config_parser["DEFAULT"][key]
9292
try:
9393
return ConfigEntity(**config_data)
9494
except pydantic.ValidationError as e:

0 commit comments

Comments
 (0)