Browse Source

Use assignment operator

pull/14/head
Richard Neumann 3 years ago
parent
commit
f4fde38a13
  1. 3
      rcon/source/client.py

3
rcon/source/client.py

@ -35,9 +35,8 @@ class Client(BaseClient, socket_type=SOCK_STREAM):
def communicate(self, packet: Packet) -> Packet: def communicate(self, packet: Packet) -> Packet:
"""Send and receive a packet.""" """Send and receive a packet."""
self.send(packet) self.send(packet)
response = self.read()
if len(response.payload) < self.frag_threshold: if len((response := self.read()).payload) < self.frag_threshold:
return response return response
self.send(Packet.make_command(self.frag_detect_cmd)) self.send(Packet.make_command(self.frag_detect_cmd))

Loading…
Cancel
Save