Browse Source

Using cls.from_bytes() instead of super().

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

2
rcon/proto.py

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

Loading…
Cancel
Save