Skip to content

[pre-commit.ci] pre-commit autoupdate #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 3, 2025
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