diff options
author | 2021-08-02 14:26:11 +0200 | |
---|---|---|
committer | 2021-08-02 14:26:11 +0200 | |
commit | 567c911e4b3a15559d8203da13174ef1e43b1312 (patch) | |
tree | 68576e80efe9b188983fc64e9434627d0c81aa84 | |
parent | Fix leading space in str of identifiers without a group (diff) |
Correct the documented return objects
-rw-r--r-- | bot/exts/info/tags.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/tags.py b/bot/exts/info/tags.py index 0bedd6e10..b6a91269a 100644 --- a/bot/exts/info/tags.py +++ b/bot/exts/info/tags.py @@ -264,7 +264,7 @@ class Tags(Cog): """ Generate an embed of the requested tag or of suggestions if the tag doesn't exist/isn't accessible by the user. - If the requested tag is on cooldown or no suggestions were found, return None. + If the requested tag is on cooldown return `COOLDOWN.obj`, otherwise if no suggestions were found return None. """ filtered_tags = [ (ident, tag) for ident, tag in |