diff --git a/openrgb/utils.py b/openrgb/utils.py index ae8a525..15c20f4 100644 --- a/openrgb/utils.py +++ b/openrgb/utils.py @@ -152,7 +152,7 @@ def unpack(cls, data: bytearray, start: int = 0, *args) -> Tuple[int, RGBColor]: return (start + size), cls(r, g, b) @classmethod - def fromHSV(cls, hue: int, saturation: int, value: int) -> CT: + def fromHSV(cls, hue: int, saturation: int, value: int) -> RGBColor: ''' Creates a RGBColor object from HSV values using colorsys '''