diff options
| author | 2019-02-22 07:57:51 -0600 | |
|---|---|---|
| committer | 2019-02-22 07:57:51 -0600 | |
| commit | 241bea0e8340167bcad5ff2269cf79288656daea (patch) | |
| tree | 0cb7bcc4bd1fd4b7fc499c6f15502dde9eb05fa2 /bot/cogs/reminders.py | |
| parent | Linting corrections. (diff) | |
Corrected another roles constant in reminders.py
Signed-off-by: Daniel Brown <[email protected]>
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/reminders.py | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/bot/cogs/reminders.py b/bot/cogs/reminders.py index ddf5cc1f3..2a9a9d6dc 100644 --- a/bot/cogs/reminders.py +++ b/bot/cogs/reminders.py @@ -11,7 +11,7 @@ from discord.ext.commands import Bot, Context, group  from bot.constants import (      Channels, Icons, Keys, NEGATIVE_REPLIES, -    POSITIVE_REPLIES, Roles, URLs +    POSITIVE_REPLIES, STAFF_ROLES, URLs  )  from bot.pagination import LinePaginator  from bot.utils.scheduling import Scheduler @@ -19,7 +19,6 @@ from bot.utils.time import humanize_delta, parse_rfc1123, wait_until  log = logging.getLogger(__name__) -STAFF_ROLES = (Roles.owner, Roles.admin, Roles.moderator, Roles.helpers)  WHITELISTED_CHANNELS = (Channels.bot,)  MAXIMUM_REMINDERS = 5 | 
