diff options
Diffstat (limited to 'discord/colour.py')
| -rw-r--r-- | discord/colour.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/discord/colour.py b/discord/colour.py index 21344c47..1dc9662e 100644 --- a/discord/colour.py +++ b/discord/colour.py @@ -84,21 +84,21 @@ class Colour: @property def r(self): - """Returns the red component of the colour.""" + """:class:`int`: Returns the red component of the colour.""" return self._get_byte(2) @property def g(self): - """Returns the green component of the colour.""" + """:class:`int`: Returns the green component of the colour.""" return self._get_byte(1) @property def b(self): - """Returns the blue component of the colour.""" + """:class:`int`: Returns the blue component of the colour.""" return self._get_byte(0) def to_rgb(self): - """Returns an (r, g, b) tuple representing the colour.""" + """Tuple[:class:`int`, :class:`int`, :class:`int`]: Returns an (r, g, b) tuple representing the colour.""" return (self.r, self.g, self.b) @classmethod |