diff options
Diffstat (limited to 'discord/colour.py')
| -rw-r--r-- | discord/colour.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/colour.py b/discord/colour.py index 76b8bf06..1a4a6183 100644 --- a/discord/colour.py +++ b/discord/colour.py @@ -50,7 +50,7 @@ class Colour: The raw integer colour value. """ - __slots__ = [ 'value' ] + __slots__ = ('value',) def __init__(self, value): self.value = value |