From 896a5bef1d9726bfad771a1131a98f4130405d47 Mon Sep 17 00:00:00 2001 From: Caio Alexandre Date: Thu, 19 Nov 2020 12:23:59 -0300 Subject: [PATCH] Add Colour.random factory method --- discord/colour.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/discord/colour.py b/discord/colour.py index 804173a4f..c2acfb4e5 100644 --- a/discord/colour.py +++ b/discord/colour.py @@ -25,6 +25,7 @@ DEALINGS IN THE SOFTWARE. """ import colorsys +import random class Colour: """Represents a Discord role colour. This class is similar @@ -117,6 +118,11 @@ class Colour: """A factory method that returns a :class:`Colour` with a value of ``0``.""" return cls(0) + @classmethod + def random(cls): + """A factory method that returns a :class:`Colour` with a random value.""" + return cls.from_hsv(random.random(), 1, 1) + @classmethod def teal(cls): """A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``."""