Skip to content

Commit 3711b67

Browse files
committed
Fix typo in class variable
1 parent 3b9a596 commit 3711b67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mcproto/packets/abc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class PacketDirection(IntEnum):
3030
class Packet(Serializable, RequiredParamsABCMixin):
3131
"""Base class for all packets"""
3232

33-
_REQUIRRED_CLASS_VARS: ClassVar[Sequence[str]] = ["PACKET_ID", "GAME_STATE"]
33+
_REQUIRED_CLASS_VARS: ClassVar[Sequence[str]] = ["PACKET_ID", "GAME_STATE"]
3434
_REQUIRED_CLASS_VARS_NO_MRO: ClassVar[Sequence[str]] = ["__slots__"]
3535

3636
__slots__ = ()

0 commit comments

Comments
 (0)