From 3e5a3855c02224844441c5224a88393d295e37d6 Mon Sep 17 00:00:00 2001 From: Laptop <98688203+LaptopCat@users.noreply.github.com> Date: Tue, 20 Sep 2022 20:06:12 +0300 Subject: [PATCH 1/3] Fix typo in atserver.py Fix typo on line 374 --- python_aternos/atserver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_aternos/atserver.py b/python_aternos/atserver.py index 368ec22..7516b77 100644 --- a/python_aternos/atserver.py +++ b/python_aternos/atserver.py @@ -371,7 +371,7 @@ class AternosServer: """Check if server software is Bedrock Edition Returns: - Is it Minefcraft BE + Is it Minecraft BE """ return bool(self._info['bedrock']) From c604144e2c204c24fb173391a9c86f827917c076 Mon Sep 17 00:00:00 2001 From: Laptop <98688203+LaptopCat@users.noreply.github.com> Date: Tue, 20 Sep 2022 20:08:34 +0300 Subject: [PATCH 2/3] Fix atconnect.py Fix mistake on line 28 --- python_aternos/atconnect.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python_aternos/atconnect.py b/python_aternos/atconnect.py index 8f0454f..3cb4805 100644 --- a/python_aternos/atconnect.py +++ b/python_aternos/atconnect.py @@ -25,8 +25,7 @@ REQUA = \ class AternosConnect: - """Class for sending API requests - bypass Cloudflare and parsing responses""" + """Class for sending API requests, bypassing Cloudflare and parsing responses""" def __init__(self) -> None: From 5971837cbf899595bff07eaa13f7571c0ddacd55 Mon Sep 17 00:00:00 2001 From: Laptop <98688203+LaptopCat@users.noreply.github.com> Date: Tue, 20 Sep 2022 20:09:21 +0300 Subject: [PATCH 3/3] Fix aterrors.py Fix mistake on line 1 --- python_aternos/aterrors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_aternos/aterrors.py b/python_aternos/aterrors.py index db04b61..617462d 100644 --- a/python_aternos/aterrors.py +++ b/python_aternos/aterrors.py @@ -1,4 +1,4 @@ -"""Exceptions classes""" +"""Exception classes""" from typing import Final