diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 32fbfd3..b072967 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v5.0.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer @@ -14,11 +14,11 @@ repos: - id: fix-byte-order-marker - id: mixed-line-ending - repo: https://github.com/psf/black - rev: 23.1.0 + rev: 25.1.0 hooks: - id: black - repo: https://github.com/PyCQA/flake8 - rev: 6.0.0 + rev: 7.2.0 hooks: - id: flake8 additional_dependencies: ['flake8-pyproject', 'flake8-docstrings', 'darglint'] diff --git a/teamtalk/message.py b/teamtalk/message.py index c28411f..725bbb0 100644 --- a/teamtalk/message.py +++ b/teamtalk/message.py @@ -1,6 +1,5 @@ """This module contains the Message class and its subclasses.""" - from .implementation.TeamTalkPy import TeamTalk5 as sdk diff --git a/teamtalk/statistics.py b/teamtalk/statistics.py index 40261d3..83745ed 100644 --- a/teamtalk/statistics.py +++ b/teamtalk/statistics.py @@ -1,4 +1,5 @@ """Server statistics module for Teamtalk.""" + from .implementation.TeamTalkPy import TeamTalk5 as sdk from ._utils import _get_tt_obj_attribute