fix is_redeem_from_config_active type hints

This commit is contained in:
Lili (Tlapka) 2024-10-06 11:18:43 +02:00
parent 6758829634
commit 50403381e0
2 changed files with 5 additions and 4 deletions

View File

@ -214,7 +214,7 @@ def is_redeem_active(redeem_name: str) -> bool | None:
def is_redeem_from_config_active(redeem: Redeem, active_categories: list[str]) -> bool:
def is_redeem_from_config_active(redeem: tuple[str, Redeem], active_categories: list[str]) -> bool:
"""Checks if redeem is active. `redeem` is a whole key:value pair from redeems config."""
if isinstance(redeem[1].get("category"), list):
for category in redeem[1]["category"]:

View File

@ -1,4 +1,5 @@
from typing import Tuple, Any, TypeAlias
from typing import Any, TypeAlias
Redeem: TypeAlias = Tuple[str, dict[str, Any]]
Redeems: TypeAlias = Tuple[str, Redeem]
Redeem: TypeAlias = dict[str, dict[str, Any]]
# at the moment the Any could be specialized to str | int | list[str]
Redeems: TypeAlias = dict[str, Redeem]