From 5ba554c027565eeb41b1f02b87d873d616da291b Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Sun, 21 Aug 2022 15:21:13 +0200 Subject: [PATCH] Update type hints --- rcon/source/proto.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rcon/source/proto.py b/rcon/source/proto.py index e14981f..35ff08f 100644 --- a/rcon/source/proto.py +++ b/rcon/source/proto.py @@ -87,7 +87,7 @@ class Packet(NamedTuple): payload: bytes terminator: bytes = TERMINATOR - def __add__(self, other: Packet | None): + def __add__(self, other: Packet | None) -> Packet: if other is None: return self @@ -107,7 +107,7 @@ class Packet(NamedTuple): self.terminator ) - def __radd__(self, other: Packet): + def __radd__(self, other: Packet | None) -> Packet: if other is None: return self