From 024a171763b9990be3880f3ea3793f46c24f8ab5 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Sun, 14 Aug 2022 23:50:01 +0200 Subject: [PATCH] Remove unused variable assignment --- rcon/source/proto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcon/source/proto.py b/rcon/source/proto.py index 317f1b4..e5febcf 100644 --- a/rcon/source/proto.py +++ b/rcon/source/proto.py @@ -122,7 +122,7 @@ class Packet(NamedTuple): size = LittleEndianSignedInt32.read(file) id_ = LittleEndianSignedInt32.read(file) type_ = Type.read(file) - payload = file.read(size := size - 10) + payload = file.read(size - 10) terminator = file.read(2) if terminator != TERMINATOR: