Skip to content

Commit

Permalink
Update hikari/internal/fast_protocol.py
Browse files Browse the repository at this point in the history
Co-authored-by: Yak <[email protected]>
Signed-off-by: davfsa <[email protected]>
  • Loading branch information
davfsa and yakMM authored Nov 14, 2023
1 parent 5da7555 commit 9015fd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hikari/internal/fast_protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from typing_extensions import Self

_Protocol: FastProtocolChecking = NotImplemented
_IGNORED_ATTRS = frozenset(tuple(typing.EXCLUDED_ATTRIBUTES) + ("__qualname__", "__slots__"))
_IGNORED_ATTRS = frozenset(typing.EXCLUDED_ATTRIBUTES) | {"__qualname__", "__slots__"}


def _check_if_ignored(name: str) -> bool:
Expand Down

0 comments on commit 9015fd4

Please sign in to comment.