From b7133cc9d467d03daabbc80cad6ce2bec8ad7c86 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Mon, 11 Jan 2021 23:20:09 +0100 Subject: [PATCH] Fixed calls to aread(). --- rcon/proto.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rcon/proto.py b/rcon/proto.py index 6b05d43..c08ff48 100644 --- a/rcon/proto.py +++ b/rcon/proto.py @@ -76,7 +76,7 @@ class Type(Enum): @classmethod async def aread(cls, file: IO) -> Type: """Reads the type from an asynchronous file-like object.""" - return cls(await LittleEndianSignedInt32.read(file)) + return cls(await LittleEndianSignedInt32.aread(file)) @classmethod def read(cls, file: IO) -> Type: @@ -104,9 +104,9 @@ class Packet(NamedTuple): @classmethod async def aread(cls, file: IO) -> Packet: """Reads a packet from an asynchronous file-like object.""" - size = await LittleEndianSignedInt32.read(file) - id_ = await LittleEndianSignedInt32.read(file) - type_ = await Type.read(file) + size = await LittleEndianSignedInt32.aread(file) + id_ = await LittleEndianSignedInt32.aread(file) + type_ = await Type.aread(file) payload = await file.read(size - 10) terminator = await file.read(2)