mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
Add colorsys.__all__ (#7297)
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
__all__ = ["rgb_to_yiq", "yiq_to_rgb", "rgb_to_hls", "hls_to_rgb", "rgb_to_hsv", "hsv_to_rgb"]
|
||||
|
||||
def rgb_to_yiq(r: float, g: float, b: float) -> tuple[float, float, float]: ...
|
||||
def yiq_to_rgb(y: float, i: float, q: float) -> tuple[float, float, float]: ...
|
||||
def rgb_to_hls(r: float, g: float, b: float) -> tuple[float, float, float]: ...
|
||||
|
||||
Reference in New Issue
Block a user