diff options
Diffstat (limited to 'discord/ext/commands')
| -rw-r--r-- | discord/ext/commands/cooldowns.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/commands/cooldowns.py b/discord/ext/commands/cooldowns.py index c1aa10a7..fb1fe51a 100644 --- a/discord/ext/commands/cooldowns.py +++ b/discord/ext/commands/cooldowns.py @@ -35,7 +35,7 @@ class BucketType(enum.Enum): channel = 3 class Cooldown: - __slots__ = ['rate', 'per', 'type', '_window', '_tokens', '_last'] + __slots__ = ('rate', 'per', 'type', '_window', '_tokens', '_last') def __init__(self, rate, per, type): self.rate = int(rate) |