diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/tags.py | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/cogs/tags.py b/bot/cogs/tags.py index 692cff0d8..48f000143 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 = {}  |