From b3e913ebff40abee12503ba2d693c7d9b111adee Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Sun, 14 Aug 2022 23:49:38 +0200 Subject: [PATCH] Compensate for None --- 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 537fd66..317f1b4 100644 --- a/rcon/source/proto.py +++ b/rcon/source/proto.py @@ -79,7 +79,10 @@ class Packet(NamedTuple): payload: bytes terminator: bytes = TERMINATOR - def __add__(self, other: Packet): + def __add__(self, other: Packet | None): + if other is None: + return self + return Packet( self.id, self.type,