diff options
author | Parker <contact@pkrm.dev> | 2025-01-26 00:08:25 -0600 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2025-01-26 00:08:25 -0600 |
commit | 378e1c905788d02a36b9fac31a7fc1473e744935 (patch) | |
tree | 5172f72720b563e36a0c00416e376545d4ca7933 /code/cogs/owner | |
parent | ca9e76d69439f1d060bfd9ef00b9762c88de8a4e (diff) |
Fix
Diffstat (limited to 'code/cogs/owner')
-rw-r--r-- | code/cogs/owner/send.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/cogs/owner/send.py b/code/cogs/owner/send.py index 98567aa..b6607f2 100644 --- a/code/cogs/owner/send.py +++ b/code/cogs/owner/send.py @@ -8,7 +8,7 @@ class Send(commands.Cog): @commands.command() @commands.dm_only() @commands.is_owner() - async def send(self, ctx, user_id: int, message: str): + async def send(self, ctx, user_id: int, *, message: str): """Send a message to a user (follow-up on bug reports)""" user = await self.bot.fetch_user(user_id) |