refactoring #13

Merged
dan merged 32 commits from refactoring into dev 2023-12-08 18:17:35 +01:00
Showing only changes of commit 0cd2cd5add - Show all commits

View file

@ -2,8 +2,7 @@ from pytest_abra import Runner, Test
def condition_has_locale(env_config: dict[str, str]) -> bool: def condition_has_locale(env_config: dict[str, str]) -> bool:
if "LOCALE" in env_config: if "de" in env_config.get("LOCALE", ""):
if "de" in env_config["LOCALE"]:
return True return True
return False return False