diff options
Diffstat (limited to 'bot/exts/holidays/valentines/myvalenstate.py')
| -rw-r--r-- | bot/exts/holidays/valentines/myvalenstate.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/holidays/valentines/myvalenstate.py b/bot/exts/holidays/valentines/myvalenstate.py index fcef24bc..977b9665 100644 --- a/bot/exts/holidays/valentines/myvalenstate.py +++ b/bot/exts/holidays/valentines/myvalenstate.py @@ -39,7 +39,7 @@ class MyValenstate(commands.Cog):          return pre_row[-1]      @commands.command() -    async def myvalenstate(self, ctx: commands.Context, *, name: str = None) -> None: +    async def myvalenstate(self, ctx: commands.Context, *, name: str | None = None) -> None:          """Find the vacation spot(s) with the most matching characters to the invoking user."""          eq_chars = collections.defaultdict(int)          if name is None:  |