From 75d18aed2bf6282e3c6092e016076b5e430c490c Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Tue, 16 Jan 2024 16:00:41 +0000 Subject: [PATCH] Add more emojis --- agenda/types.py | 5 +++++ 1 file changed, 5 insertions(+) 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