Skip to content
This repository was archived by the owner on Feb 15, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions python_aternos/atconnect.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@

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:

Expand Down
2 changes: 1 addition & 1 deletion python_aternos/aterrors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Exceptions classes"""
"""Exception classes"""

from typing import Final

Expand Down
2 changes: 1 addition & 1 deletion python_aternos/atserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ def is_bedrock(self) -> bool:
"""Check if server software is Bedrock Edition

Returns:
Is it Minefcraft BE
Is it Minecraft BE
"""

return bool(self._info['bedrock'])
Expand Down