diff options
| author | 2019-07-05 17:27:19 +0200 | |
|---|---|---|
| committer | 2019-07-05 17:27:19 +0200 | |
| commit | 443a6d7d77ff8fb30abdc8bdd1983bcc800e392a (patch) | |
| tree | c3b29b0b62dd4e8beb33ce5c68f35eb3ed74184f | |
| parent | Changing class-level docstring of TalentPool class to be consistent with the ... (diff) | |
Apply suggestions from code review
Co-Authored-By: Mark <[email protected]>
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/watchchannels/talentpool.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/bot/cogs/watchchannels/talentpool.py b/bot/cogs/watchchannels/talentpool.py index 75954dd4a..6fbe2bc03 100644 --- a/bot/cogs/watchchannels/talentpool.py +++ b/bot/cogs/watchchannels/talentpool.py @@ -54,7 +54,7 @@ class TalentPool(WatchChannel):          Relay messages sent by the given `user` to the `#talent-pool` channel.          A `reason` for adding the user to the talent pool is required and will be displayed -        in the header when relaying messages of this user to the watchchannel. +        in the header when relaying messages of this user to the channel.          """          if user.bot:              await ctx.send(f":x: I'm sorry {ctx.author}, I'm afraid I can't do that. I only watch humans.") @@ -93,7 +93,7 @@ class TalentPool(WatchChannel):                  resp.raise_for_status()          self.watched_users[user.id] = response_data -        await ctx.send(f":white_check_mark: Messages sent by {user} will now be relayed to TalentPool") +        await ctx.send(f":white_check_mark: Messages sent by {user} will now be relayed to the talent pool channel")      @nomination_group.command(name='history', aliases=('info', 'search'))      @with_role(Roles.owner, Roles.admin, Roles.moderator) | 
