Browse Source

Refac.

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

2
rcon/proto.py

@ -41,7 +41,7 @@ class LittleEndianSignedInt32(int):
super().__init__() super().__init__()
if not self.MIN <= self <= self.MAX: if not self.MIN <= self <= self.MAX:
raise ValueError('Signed int32 out of bounds:', self) raise ValueError('Signed int32 out of bounds:', int(self))
def __bytes__(self): def __bytes__(self):
"""Returns the integer as signed little endian.""" """Returns the integer as signed little endian."""

Loading…
Cancel
Save