Compare commits

...

2 commits

Author SHA1 Message Date
c5472d25c1
Merge branch 'main' into aurora-pydantic
All checks were successful
Actions / Build Documentation (MkDocs) (pull_request) Successful in 32s
Actions / Lint Code (Ruff & Pylint) (pull_request) Successful in 49s
2024-08-14 01:06:13 -04:00
5bfb74de47
fix(seautils): fixed a maybe_send_embed call having an invalid kwarg
All checks were successful
Actions / Build Documentation (MkDocs) (push) Successful in 31s
Actions / Lint Code (Ruff & Pylint) (push) Successful in 44s
2024-08-13 02:39:40 -04:00

View file

@ -247,4 +247,4 @@ class SeaUtils(commands.Cog):
embed.set_footer(text=f"Page {content.index(embed) + 1}/{len(content)}") embed.set_footer(text=f"Page {content.index(embed) + 1}/{len(content)}")
await SimpleMenu(pages=content, disable_after_timeout=True, timeout=300).start(ctx) await SimpleMenu(pages=content, disable_after_timeout=True, timeout=300).start(ctx)
else: else:
await ctx.maybe_send_embed(content=cf.error(f"An error occurred while fetching RFC {number}. Status code: {response.status}.")) await ctx.maybe_send_embed(message=cf.error(f"An error occurred while fetching RFC {number}. Status code: {response.status}."))