diff options
author | 2021-08-02 14:57:10 +0200 | |
---|---|---|
committer | 2021-08-02 14:57:10 +0200 | |
commit | e3b9924920a32e19adfa1274cfdbc4cf9ddb874a (patch) | |
tree | 9bf1005c2b32adb88f1b88660c8cfd0b967fcb2e | |
parent | Remove embed title bolding for group listing (diff) |
Do not pass in embed as a kwarg
Using a doesn't add anything to the readability of the line and makes it
inconsistent with other uses
-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 2b610a5fb..34592adde 100644 --- a/bot/exts/info/tags.py +++ b/bot/exts/info/tags.py @@ -340,7 +340,7 @@ class Tags(Cog): group_accessible = True embed = Embed(title="Current tags") - await LinePaginator.paginate(result_lines, ctx, embed=embed, max_lines=15, empty=False, footer_text=FOOTER_TEXT) + await LinePaginator.paginate(result_lines, ctx, embed, max_lines=15, empty=False, footer_text=FOOTER_TEXT) async def list_tags_in_group(self, ctx: Context, group: str) -> None: """Send a paginator with all tags under `group`, that are accessible by `ctx.author`.""" |