Browse Source
Fix User.accent_color incorrect attribute access
pull/7313/head
nickofolas
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
discord/user.py
|
|
@ -157,9 +157,9 @@ class BaseUser(_UserTag): |
|
|
|
|
|
|
|
This information is only available via :meth:`Client.fetch_user`. |
|
|
|
""" |
|
|
|
if self._accent_color is None: |
|
|
|
if self._accent_colour is None: |
|
|
|
return None |
|
|
|
return Colour(self._accent_color) |
|
|
|
return Colour(self._accent_colour) |
|
|
|
|
|
|
|
@property |
|
|
|
def accent_color(self) -> Optional[Colour]: |
|
|
|