This commit is contained in:
Kovid Goyal 2021-10-12 12:32:15 +05:30
parent d55d8ac091
commit 8187ec2cef
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

2
kitty/rgb.py generated
View File

@ -75,7 +75,7 @@ def color_from_int(x: int) -> Color:
def color_as_int(x: Color) -> int: def color_as_int(x: Color) -> int:
return x.red << 16 | x.green << 8 | x.blue return int(x)
def color_as_sharp(x: Color) -> str: def color_as_sharp(x: Color) -> str: