diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1b4cfc7..5eee2e3 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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 diff --git a/src/uwwvb.py b/src/uwwvb.py index d5b5164..775db69 100644 --- a/src/uwwvb.py +++ b/src/uwwvb.py @@ -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 diff --git a/test/testuwwvb.py b/test/testuwwvb.py index 6a8e485..f29f4b5 100644 --- a/test/testuwwvb.py +++ b/test/testuwwvb.py @@ -4,7 +4,7 @@ # # SPDX-License-Identifier: GPL-3.0-only -# ruff: noqa: N802 D102 +# ruff: noqa: N802 import datetime import random import sys diff --git a/test/testwwvb.py b/test/testwwvb.py index db981e8..55cbc52 100755 --- a/test/testwwvb.py +++ b/test/testwwvb.py @@ -1,5 +1,4 @@ #!/usr/bin/python3 -# ruff: noqa: E501 """Test most wwvblib functionality"""