ambdroid
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
discord/colour.py
|
@ -196,6 +196,9 @@ class Colour: |
|
|
The string could not be converted into a colour. |
|
|
The string could not be converted into a colour. |
|
|
""" |
|
|
""" |
|
|
|
|
|
|
|
|
|
|
|
if not value: |
|
|
|
|
|
raise ValueError('unknown colour format given') |
|
|
|
|
|
|
|
|
if value[0] == '#': |
|
|
if value[0] == '#': |
|
|
return parse_hex_number(value[1:]) |
|
|
return parse_hex_number(value[1:]) |
|
|
|
|
|
|
|
|