From aca2e7df12b3aa4ff24951acc053b6813657cbb3 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Sun, 21 Aug 2022 15:20:28 +0200 Subject: [PATCH] Fix Packet.__radd__() --- rcon/source/proto.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rcon/source/proto.py b/rcon/source/proto.py index 5201db5..e14981f 100644 --- a/rcon/source/proto.py +++ b/rcon/source/proto.py @@ -108,7 +108,10 @@ class Packet(NamedTuple): ) def __radd__(self, other: Packet): - return self.__add__(other) + if other is None: + return self + + return other.__add__(self) def __bytes__(self): """Return the packet as bytes with prepended length."""