diff --git a/agenda/types.py b/agenda/types.py index 7b8ae3c..578c145 100644 --- a/agenda/types.py +++ b/agenda/types.py @@ -107,6 +107,9 @@ emojis = { "rocket": "🚀", "birthday": "🎈", "waste_schedule": "🗑️", + "economist": "📰", + "running": "🏃", + "critical_mass": "🚴", } @@ -203,6 +206,8 @@ class Event: @property def emoji(self) -> str | None: """Emoji.""" + if self.title == "LHG Run Club": + return "🏃🍻" return emojis.get(self.name) @property