Browse Source

Fix Packet.__radd__()

pull/14/head
Richard Neumann 3 years ago
parent
commit
9545943a74
  1. 2
      rcon/source/proto.py

2
rcon/source/proto.py

@ -99,7 +99,7 @@ class Packet(NamedTuple):
)
def __radd__(self, other: Packet):
return other.__add__(self)
return self.__add__(other)
def __bytes__(self):
"""Return the packet as bytes with prepended length."""

Loading…
Cancel
Save