aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Numerlor <[email protected]>2021-08-02 14:57:10 +0200
committerGravatar Numerlor <[email protected]>2021-08-02 14:57:10 +0200
commite3b9924920a32e19adfa1274cfdbc4cf9ddb874a (patch)
tree9bf1005c2b32adb88f1b88660c8cfd0b967fcb2e
parentRemove 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.py2
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`."""