From c597b8941ea2d92e65b4fa7ece128d086f969d61 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Mon, 11 Jan 2021 22:38:17 +0100 Subject: [PATCH] Using cls.from_bytes() instead of super(). --- rcon/proto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcon/proto.py b/rcon/proto.py index 63ff740..91f97a9 100644 --- a/rcon/proto.py +++ b/rcon/proto.py @@ -47,7 +47,7 @@ class LittleEndianSignedInt32(int): @classmethod def read(cls, file: IO) -> LittleEndianSignedInt32: """Reads the integer from a file-like object.""" - return super().from_bytes(file.read(4), 'little', signed=True) + return cls.from_bytes(file.read(4), 'little', signed=True) class Type(Enum):