mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-04-19 15:36:02 +00:00
Remove redundant int cast
This commit is contained in:
parent
f950019c75
commit
82b12ba481
@ -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…
x
Reference in New Issue
Block a user