Remove redundant int cast

This commit is contained in:
Willy 2023-01-12 23:39:07 -05:00 committed by GitHub
parent f950019c75
commit 82b12ba481
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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