aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/cogs/tags.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/cogs/tags.py b/bot/cogs/tags.py
index b6835e5da..fecaf926d 100644
--- a/bot/cogs/tags.py
+++ b/bot/cogs/tags.py
@@ -30,7 +30,8 @@ class Tags(Cog):
self.tag_cooldowns = {}
self._cache = self.get_tags()
- def get_tags(self) -> dict:
+ @staticmethod
+ def get_tags() -> dict:
"""Get all tags."""
# Save all tags in memory.
cache = {}