Skip to content

Commit 0d05c49

Browse files
committed
Python 3.8 compat fix
1 parent 91462ed commit 0d05c49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ class Settings(BaseSettings):
188188
pytest.param({'pomme': 'pomme-chosen', 'manzano': 'manzano-chosen'}, 'pomme-chosen', id='pomme-priority'),
189189
],
190190
)
191-
def test_populate_by_name_with_alias_choices_when_using_alias(env, env_vars: dict[str, str], expected_value: str):
191+
def test_populate_by_name_with_alias_choices_when_using_alias(env, env_vars: Dict[str, str], expected_value: str):
192192
for k, v in env_vars.items():
193193
env.set(k, v)
194194

0 commit comments

Comments
 (0)