aboutsummaryrefslogtreecommitdiff
path: root/cogs/general.py
diff options
context:
space:
mode:
authorMango0x45 <thomasvoss@live.com>2020-09-30 11:31:41 +0000
committerMango0x45 <thomasvoss@live.com>2020-09-30 11:31:41 +0000
commitfb1653c8ff601ae8fbf8480b09cf2442e65a75ec (patch)
tree72c09d8bd2f2d64d23ba80d40f65ded156cd963d /cogs/general.py
parent8586fb2f1a1397d22d0847520285e8b60f19cf9b (diff)
downloadsteve-bot-fb1653c8ff601ae8fbf8480b09cf2442e65a75ec.tar
steve-bot-fb1653c8ff601ae8fbf8480b09cf2442e65a75ec.tar.gz
steve-bot-fb1653c8ff601ae8fbf8480b09cf2442e65a75ec.tar.bz2
steve-bot-fb1653c8ff601ae8fbf8480b09cf2442e65a75ec.tar.lz
steve-bot-fb1653c8ff601ae8fbf8480b09cf2442e65a75ec.tar.xz
steve-bot-fb1653c8ff601ae8fbf8480b09cf2442e65a75ec.tar.zst
steve-bot-fb1653c8ff601ae8fbf8480b09cf2442e65a75ec.zip
Added type hints to look smart
Diffstat (limited to 'cogs/general.py')
-rwxr-xr-xcogs/general.py2
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)]