Skip to content

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

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repos:
- id: reuse
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.11.7
rev: v0.12.0
hooks:
# Run the linter.
- id: ruff
Expand Down
2 changes: 1 addition & 1 deletion src/uwwvb.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# SPDX-License-Identifier: GPL-3.0-only

# ruff: noqa: C405 PYI024 PLR2004 FBT001 FBT002
# ruff: noqa: C405, PYI024, FBT001, FBT002

"""Implementation of a WWVB state machine & decoder for resource-constrained systems

Expand Down
2 changes: 1 addition & 1 deletion test/testuwwvb.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# SPDX-License-Identifier: GPL-3.0-only

# ruff: noqa: N802 D102
# ruff: noqa: N802
import datetime
import random
import sys
Expand Down
1 change: 0 additions & 1 deletion test/testwwvb.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/python3
# ruff: noqa: E501

"""Test most wwvblib functionality"""

Expand Down
Loading