diff --git a/a2s/a2s_protocol.py b/a2s/a2s_protocol.py index bf5b5b9..0f3aa81 100644 --- a/a2s/a2s_protocol.py +++ b/a2s/a2s_protocol.py @@ -9,14 +9,14 @@ from .byteio import ByteReader class A2SProtocol: @staticmethod def serialize_request(challenge: int) -> bytes: - raise NotImplemented + raise NotImplementedError() @staticmethod def validate_response_type(response_type: int) -> bool: - raise NotImplemented + raise NotImplementedError() @staticmethod def deserialize_response( reader: ByteReader, response_type: int, ping: Optional[float] ) -> Any: - raise NotImplemented + raise NotImplementedError()