Browse Source

Remove redundant int cast

pull/10109/head
Willy 2 years ago
committed by dolfies
parent
commit
f74047a92e
  1. 2
      discord/role.py

2
discord/role.py

@ -252,7 +252,7 @@ class Role(Hashable):
return True
if self.position == other.position:
return int(self.id) > int(other.id)
return self.id > other.id
return False

Loading…
Cancel
Save