Browse Source

Compensate for None

pull/14/head
Richard Neumann 3 years ago
parent
commit
b3e913ebff
  1. 5
      rcon/source/proto.py

5
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,

Loading…
Cancel
Save