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

Loading…
Cancel
Save