Browse Source

fix wrong type in base class

pull/43/head
Alex Nørgaard 2 years ago
parent
commit
9d8c37eaf5
No known key found for this signature in database GPG Key ID: 94D54F6A3604E97
  1. 6
      a2s/a2s_protocol.py

6
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()

Loading…
Cancel
Save