diff options
author | 2019-09-22 19:10:34 -0400 | |
---|---|---|
committer | 2019-09-22 19:10:34 -0400 | |
commit | bf7d0585d943fa4bfb7b3720eb601c83fe47f4b4 (patch) | |
tree | 4ff9373390f7da75e7efb4b6449245e35fa1607c | |
parent | Apply suggestions from code review (diff) |
Apply suggestions from code review
Co-Authored-By: Leon Sandøy <[email protected]>
-rw-r--r-- | bot/cogs/superstarify/__init__.py | 2 | ||||
-rw-r--r-- | bot/interpreter.py | 2 | ||||
-rw-r--r-- | bot/utils/messages.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/bot/cogs/superstarify/__init__.py b/bot/cogs/superstarify/__init__.py index 6278beaa3..71dad0036 100644 --- a/bot/cogs/superstarify/__init__.py +++ b/bot/cogs/superstarify/__init__.py @@ -226,7 +226,7 @@ class Superstarify(Cog): @command(name='unsuperstarify', aliases=('release_nick', 'unstar')) @with_role(*MODERATION_ROLES) async def unsuperstarify(self, ctx: Context, member: Member) -> Optional[Message]: - """This command will the superstarify entry from our database, allowing the user to change their nickname.""" + """This command will remove the superstarify entry from our database, allowing the user to change their nickname.""" log.debug(f"Attempting to unsuperstarify the following user: {member.display_name}") embed = Embed() diff --git a/bot/interpreter.py b/bot/interpreter.py index 6ea49e026..a42b45a2d 100644 --- a/bot/interpreter.py +++ b/bot/interpreter.py @@ -14,7 +14,7 @@ class Interpreter(InteractiveInterpreter): """ Subclass InteractiveInterpreter to specify custom run functionality. - Helper class for internal eval + Helper class for internal eval. """ write_callable = None diff --git a/bot/utils/messages.py b/bot/utils/messages.py index 5058d42fc..549b33ca6 100644 --- a/bot/utils/messages.py +++ b/bot/utils/messages.py @@ -21,7 +21,7 @@ async def wait_for_deletion( client: Optional[Client] = None ) -> None: """ - Waits for up to `timeout` seconds for a reaction by any of the specified `user_ids` to delete the message. + Wait for up to `timeout` seconds for a reaction by any of the specified `user_ids` to delete the message. An `attach_emojis` bool may be specified to determine whether to attach the given `deletion_emojis` to the message in the given `context` |