Browse Source

Update type hints

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

4
rcon/source/proto.py

@ -87,7 +87,7 @@ class Packet(NamedTuple):
payload: bytes payload: bytes
terminator: bytes = TERMINATOR terminator: bytes = TERMINATOR
def __add__(self, other: Packet | None): def __add__(self, other: Packet | None) -> Packet:
if other is None: if other is None:
return self return self
@ -107,7 +107,7 @@ class Packet(NamedTuple):
self.terminator self.terminator
) )
def __radd__(self, other: Packet): def __radd__(self, other: Packet | None) -> Packet:
if other is None: if other is None:
return self return self

Loading…
Cancel
Save