diff options
author | 2021-08-02 14:41:46 +0200 | |
---|---|---|
committer | 2021-08-02 14:41:46 +0200 | |
commit | e40cd9840c188210a7cfde6bffbf08ce563c2a11 (patch) | |
tree | efce7c6e0209f61c63a86580a6b7e84b03cbc651 | |
parent | Add missing "the" (diff) |
Improve help output of get command
-rw-r--r-- | bot/exts/info/tags.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bot/exts/info/tags.py b/bot/exts/info/tags.py index 5e3dd400d..655ec2dd7 100644 --- a/bot/exts/info/tags.py +++ b/bot/exts/info/tags.py @@ -356,11 +356,15 @@ class Tags(Cog): tag_name: TagNameConverter = None, ) -> bool: """ - Get a specified tag, or a list of all tags if no tag is specified. + When arguments are passed in: + If a single argument is given and it matches a group name, list accessible all tags from that group. + Otherwise display the tag if one was found for the given arguments, or try to display suggestions for that name + + With no arguments, list all accessible tags Returns True if something was sent, or if the tag is on cooldown. Returns False if no message was sent. - """ + """ # noqa: D205, D415 if tag_name_or_group is None and tag_name is None: if self._tags: await self.list_all_tags(ctx) |