diff options
author | 2020-03-15 17:05:55 +0530 | |
---|---|---|
committer | 2020-03-15 17:05:55 +0530 | |
commit | 5865126b87aad1a9fd425f9b131d8520c82a96a5 (patch) | |
tree | 1f058aa17783d77482eb600dfc1062f3f32ec5dc | |
parent | Remove line that calls get_tags() method (diff) |
convert _get_tags_via_content() method to non-async
-rw-r--r-- | bot/cogs/tags.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/tags.py b/bot/cogs/tags.py index fee24b2e7..ff3be7f4a 100644 --- a/bot/cogs/tags.py +++ b/bot/cogs/tags.py @@ -91,7 +91,7 @@ class Tags(Cog): return self._get_suggestions(tag_name) return found - async def _get_tags_via_content(self, check: Callable[[Iterable], bool], keywords: str) -> list: + def _get_tags_via_content(self, check: Callable[[Iterable], bool], keywords: str) -> list: """ Search for tags via contents. |