mirror of
https://github.com/Rapptz/discord.py.git
synced 2026-09-21 03:27:42 +00:00
Slots use tuples instead now.
This commit is contained in:
+1
-1
@@ -50,7 +50,7 @@ class Colour:
|
||||
The raw integer colour value.
|
||||
"""
|
||||
|
||||
__slots__ = [ 'value' ]
|
||||
__slots__ = ('value',)
|
||||
|
||||
def __init__(self, value):
|
||||
self.value = value
|
||||
|
||||
Reference in New Issue
Block a user