From 7a846613122db036b36a68cfcd9c501096bdb71e Mon Sep 17 00:00:00 2001 From: Rapptz Date: Mon, 15 May 2017 03:40:27 -0400 Subject: [PATCH] Rename Colour.to_tuple to Colour.to_rgb. --- discord/colour.py | 2 +- docs/migrating.rst | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/discord/colour.py b/discord/colour.py index 454bafbc5..dd72510a2 100644 --- a/discord/colour.py +++ b/discord/colour.py @@ -93,7 +93,7 @@ class Colour: """Returns the blue component of the colour.""" return self._get_byte(0) - def to_tuple(self): + def to_rgb(self): """Returns an (r, g, b) tuple representing the colour.""" return (self.r, self.g, self.b) diff --git a/docs/migrating.rst b/docs/migrating.rst index 38e2af93b..1c742e9e9 100644 --- a/docs/migrating.rst +++ b/docs/migrating.rst @@ -343,6 +343,10 @@ They will be enumerated here. - Use :attr:`Message.created_at` instead. +- ``Colour.to_tuple()`` + + - Use :meth:`Colour.to_rgb` instead. + **Added** - :attr:`VoiceChannel.members` for fetching members connected to a voice channel. @@ -360,6 +364,7 @@ They will be enumerated here. - :meth:`Guild.audit_logs` to fetch the guild's audit logs. - :attr:`Message.webhook_id` to fetch the message's webhook ID. - :meth:`TextChannel.is_nsfw` to check if a text channel is NSFW. +- :meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple. .. _migrating_1_0_sending_messages: