File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 41
41
runtime_checkable ,
42
42
)
43
43
44
- from is_bigger .functions import isEqual
45
-
46
44
from . import utils
47
45
from .context_managers import Typing
48
46
from .enums import ChannelType
@@ -549,7 +547,7 @@ def _fill_overwrites(self, data: GuildChannelPayload) -> None:
549
547
if overwrite .type == _Overwrites .MEMBER :
550
548
continue
551
549
552
- if overwrite .id == everyone_id or isEqual ( overwrite . id , everyone_id ) :
550
+ if overwrite .id == everyone_id :
553
551
# the @everyone role is not guaranteed to be the first one
554
552
# in the list of permission overwrites, however the permission
555
553
# resolution code kind of requires that it is the first one in
Original file line number Diff line number Diff line change 1
1
aiohttp>=3.6.0,<4.0
2
2
typing_extensions>=4,<5; python_version < "3.11"
3
- is-bigger==0.1.9
You can’t perform that action at this time.
0 commit comments