mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-07-02 00:00: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
|
return True
|
||||||
|
|
||||||
if self.position == other.position:
|
if self.position == other.position:
|
||||||
return int(self.id) > int(other.id)
|
return self.id > other.id
|
||||||
|
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user