From 9170f011b7adb49cea18d7f4f0c3c4eb990933df Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Mon, 11 Jan 2021 22:37:20 +0100 Subject: [PATCH] Fixed docstrings. --- rcon/proto.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rcon/proto.py b/rcon/proto.py index fa411f7..63ff740 100644 --- a/rcon/proto.py +++ b/rcon/proto.py @@ -46,7 +46,7 @@ class LittleEndianSignedInt32(int): @classmethod def read(cls, file: IO) -> LittleEndianSignedInt32: - """Creates the integer from the given bytes.""" + """Reads the integer from a file-like object.""" return super().from_bytes(file.read(4), 'little', signed=True) @@ -68,7 +68,7 @@ class Type(Enum): @classmethod def read(cls, file: IO) -> Type: - """Creates a type from the given bytes.""" + """Reads the type from a file-like object.""" return cls(LittleEndianSignedInt32.read(file))