From 21a52c52ff04852ce144903c64f6593ce1312fb7 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Wed, 6 Jan 2021 23:07:34 +0100 Subject: [PATCH] Fixed return type of __int__() to int. --- rcon/proto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcon/proto.py b/rcon/proto.py index d92d820..bb57a8c 100644 --- a/rcon/proto.py +++ b/rcon/proto.py @@ -60,7 +60,7 @@ class Type(Enum): def __int__(self): """Returns the actual integer value.""" - return self.value + return int(self.value) def __bytes__(self): """Returns the integer value as little endian."""