From e3b9924920a32e19adfa1274cfdbc4cf9ddb874a Mon Sep 17 00:00:00 2001 From: Numerlor <25886452+Numerlor@users.noreply.github.com> Date: Mon, 2 Aug 2021 14:57:10 +0200 Subject: 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 --- 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 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`.""" -- cgit v1.2.3