aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRapptz <[email protected]>2017-02-28 17:39:59 -0500
committerRapptz <[email protected]>2017-02-28 17:39:59 -0500
commitaa59762c041e107a9ebc699b5d78644a7e9aea5f (patch)
treee69ae7b80e159e027790047387a1af6e48e441c9
parentAdd Messageable.ack (diff)
downloaddiscord.py-aa59762c041e107a9ebc699b5d78644a7e9aea5f.tar.xz
discord.py-aa59762c041e107a9ebc699b5d78644a7e9aea5f.zip
Remove extra space.
-rw-r--r--discord/role.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/role.py b/discord/role.py
index 52ec0580..2fd7412c 100644
--- a/discord/role.py
+++ b/discord/role.py
@@ -96,7 +96,7 @@ class Role(Hashable):
return '<Role id={0.id} name={0.name!r}>'.format(self)
def __lt__(self, other):
- if not isinstance(other, Role) or not isinstance(self, Role):
+ if not isinstance(other, Role) or not isinstance(self, Role):
return NotImplemented
if self.guild != other.guild: