Skip to content
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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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']
1 change: 0 additions & 1 deletion teamtalk/message.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""This module contains the Message class and its subclasses."""


from .implementation.TeamTalkPy import TeamTalk5 as sdk


Expand Down
1 change: 1 addition & 0 deletions teamtalk/statistics.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Server statistics module for Teamtalk."""

from .implementation.TeamTalkPy import TeamTalk5 as sdk
from ._utils import _get_tt_obj_attribute

Expand Down