Browse Source

Fixed return type of __int__() to int.

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

2
rcon/proto.py

@ -60,7 +60,7 @@ class Type(Enum):
def __int__(self):
"""Returns the actual integer value."""
return self.value
return int(self.value)
def __bytes__(self):
"""Returns the integer value as little endian."""

Loading…
Cancel
Save