Browse Source

Remove redundant int cast

pull/9176/head
Willy 2 years ago
committed by GitHub
parent
commit
82b12ba481
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/role.py

2
discord/role.py

@ -251,7 +251,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