From 6421ebed42c87ccc6a271ef3baf5345797b3b42e Mon Sep 17 00:00:00 2001 From: Numerlor <25886452+Numerlor@users.noreply.github.com> Date: Mon, 2 Aug 2021 20:35:14 +0200 Subject: Change if to elif to indicate it's exclusive with the above if --- bot/exts/info/tags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/exts/info/tags.py b/bot/exts/info/tags.py index 7efaae3c3..f2b5c0823 100644 --- a/bot/exts/info/tags.py +++ b/bot/exts/info/tags.py @@ -376,7 +376,7 @@ class Tags(Cog): await ctx.send(embed=Embed(description="**There are no tags!**")) return True - if tag_name is None: + elif tag_name is None: if any( tag_name_or_group == identifier.group and tag.accessible_by(ctx.author) for identifier, tag in self._tags.items() -- cgit v1.2.3