diff options
Diffstat (limited to 'bot/exts/fun/snakes')
| -rw-r--r-- | bot/exts/fun/snakes/_snakes_cog.py | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/bot/exts/fun/snakes/_snakes_cog.py b/bot/exts/fun/snakes/_snakes_cog.py index f1a1cab9..82496629 100644 --- a/bot/exts/fun/snakes/_snakes_cog.py +++ b/bot/exts/fun/snakes/_snakes_cog.py @@ -848,7 +848,7 @@ class Snakes(Cog):          await self._validate_answer(ctx, quiz, answer, options)      @snakes_group.command(name="name", aliases=("name_gen",)) -    async def name_command(self, ctx: Context, *, name: str = None) -> None: +    async def name_command(self, ctx: Context, *, name: str | None = None) -> None:          """          Snakifies a username. @@ -1041,7 +1041,7 @@ class Snakes(Cog):          await ctx.send(embed=embed)      @snakes_group.command(name="snakify") -    async def snakify_command(self, ctx: Context, *, message: str = None) -> None: +    async def snakify_command(self, ctx: Context, *, message: str | None = None) -> None:          """          How would I talk if I were a snake? @@ -1076,7 +1076,7 @@ class Snakes(Cog):              await ctx.send(embed=embed)      @snakes_group.command(name="video", aliases=("get_video",)) -    async def video_command(self, ctx: Context, *, search: str = None) -> None: +    async def video_command(self, ctx: Context, *, search: str | None = None) -> None:          """          Gets a YouTube video about snakes. | 
