diff options
Diffstat (limited to 'cogs/general.py')
-rwxr-xr-x | cogs/general.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cogs/general.py b/cogs/general.py index 0ad808a..c772f58 100755 --- a/cogs/general.py +++ b/cogs/general.py @@ -387,7 +387,7 @@ class MyHelpCommand(commands.MinimalHelpCommand): def get_command_signature(self, command):
return f"``{self.clean_prefix}{command.qualified_name} {command.signature}``"
- def get_ending_note(self):
+ def get_ending_note(self) -> str:
return self.messages[randint(0, len(self.messages) - 1)]
|