Browse Source

Fix IndexError when using empty string in Colour.from_str

Co-authored-by: Danny <[email protected]>
pull/9553/head
ambdroid 2 years ago
committed by GitHub
parent
commit
78ce5f2331
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      discord/colour.py

3
discord/colour.py

@ -196,6 +196,9 @@ class Colour:
The string could not be converted into a colour.
"""
if not value:
raise ValueError('unknown colour format given')
if value[0] == '#':
return parse_hex_number(value[1:])

Loading…
Cancel
Save