Coverage for app / backend / src / couchers / notifications / utils.py: 100%
2 statements
« prev ^ index » next coverage.py v7.13.2, created at 2026-02-03 06:18 +0000
« prev ^ index » next coverage.py v7.13.2, created at 2026-02-03 06:18 +0000
1from couchers.models import NotificationTopicAction
3enum_from_topic_action: dict[tuple[str, str], NotificationTopicAction] = {
4 (item.topic, item.action): item for item in NotificationTopicAction
5}