diff options
author | 2022-02-28 19:53:35 -0500 | |
---|---|---|
committer | 2022-02-28 19:53:35 -0500 | |
commit | 7637f1c139ba7df50ca6ac56192aef769355cc80 (patch) | |
tree | 65f9b66ed7ed550a8ad81ed871be7f573ac079b7 | |
parent | fix: Make help buttons only work for author (diff) |
docs: Make docstring sound better
-rw-r--r-- | bot/exts/info/help.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/help.py b/bot/exts/info/help.py index ad784c87b..33ce40c88 100644 --- a/bot/exts/info/help.py +++ b/bot/exts/info/help.py @@ -121,7 +121,7 @@ class CommandView(ui.View): self.children.append(GroupButton(help_command, command, emoji="↩️")) async def interaction_check(self, interaction: Interaction) -> bool: - """Ensures the button only works for the user who spawned the help command.""" + """Ensures that the button only works for the user who spawned the help command.""" if interaction.user is not None: if interaction.user.id == self.context.author.id: |