Browse Source

Fixed docstrings.

pull/2/head
Richard Neumann 4 years ago
parent
commit
9170f011b7
  1. 4
      rcon/proto.py

4
rcon/proto.py

@ -46,7 +46,7 @@ class LittleEndianSignedInt32(int):
@classmethod
def read(cls, file: IO) -> LittleEndianSignedInt32:
"""Creates the integer from the given bytes."""
"""Reads the integer from a file-like object."""
return super().from_bytes(file.read(4), 'little', signed=True)
@ -68,7 +68,7 @@ class Type(Enum):
@classmethod
def read(cls, file: IO) -> Type:
"""Creates a type from the given bytes."""
"""Reads the type from a file-like object."""
return cls(LittleEndianSignedInt32.read(file))

Loading…
Cancel
Save