Skip to content

Commit

Permalink
Revert "chore(stonks): improve pycord" (Pycord-Development#2352)
Browse files Browse the repository at this point in the history
Revert "chore(stonks): improve pycord (Pycord-Development#2347)"

This reverts commit 7d03c49.
  • Loading branch information
Lulalaby authored Feb 5, 2024
1 parent 7d03c49 commit 8a7ea47
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions discord/abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@
runtime_checkable,
)

from is_bigger.functions import isEqual

from . import utils
from .context_managers import Typing
from .enums import ChannelType
Expand Down Expand Up @@ -549,7 +547,7 @@ def _fill_overwrites(self, data: GuildChannelPayload) -> None:
if overwrite.type == _Overwrites.MEMBER:
continue

if overwrite.id == everyone_id or isEqual(overwrite.id, everyone_id):
if overwrite.id == everyone_id:
# the @everyone role is not guaranteed to be the first one
# in the list of permission overwrites, however the permission
# resolution code kind of requires that it is the first one in
Expand Down
1 change: 0 additions & 1 deletion requirements/_.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
aiohttp>=3.6.0,<4.0
typing_extensions>=4,<5; python_version < "3.11"
is-bigger==0.1.9

0 comments on commit 8a7ea47

Please sign in to comment.