@@ -517,7 +517,7 @@ async def logs_search(self, ctx, limit: Optional[int] = None, *, query):
517
517
@commands .command ()
518
518
@checks .has_permissions (PermissionLevel .SUPPORTER )
519
519
@checks .thread_only ()
520
- async def reply (self , ctx , * , msg : str ):
520
+ async def reply (self , ctx , * , msg : str = '' ):
521
521
"""Reply to users using this command.
522
522
523
523
Supports attachments and images as well as
@@ -530,7 +530,7 @@ async def reply(self, ctx, *, msg: str):
530
530
@commands .command ()
531
531
@checks .has_permissions (PermissionLevel .SUPPORTER )
532
532
@checks .thread_only ()
533
- async def anonreply (self , ctx , * , msg : str ):
533
+ async def anonreply (self , ctx , * , msg : str = '' ):
534
534
"""Reply to a thread anonymously.
535
535
536
536
You can edit the anonymous user's name,
@@ -546,7 +546,7 @@ async def anonreply(self, ctx, *, msg: str):
546
546
@commands .command ()
547
547
@checks .has_permissions (PermissionLevel .SUPPORTER )
548
548
@checks .thread_only ()
549
- async def note (self , ctx , * , msg : str ):
549
+ async def note (self , ctx , * , msg : str = '' ):
550
550
"""Take a note about the current thread, useful for noting context."""
551
551
ctx .message .content = msg
552
552
async with ctx .typing ():
0 commit comments