From b6c542ea4e5286da323e39dc2107e387acda8a24 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 13:23:32 +0000 Subject: [PATCH] chore: pre-commit autoupdate (#4336) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/pappasam/toml-sort: v0.23.1 → v0.24.2](https://github.com/pappasam/toml-sort/compare/v0.23.1...v0.24.2) - [github.com/astral-sh/ruff-pre-commit: v0.7.2 → v0.8.1](https://github.com/astral-sh/ruff-pre-commit/compare/v0.7.2...v0.8.1) - [github.com/streetsidesoftware/cspell-cli: v8.15.2 → v8.16.0](https://github.com/streetsidesoftware/cspell-cli/compare/v8.15.2...v8.16.0) - [github.com/pycqa/pylint.git: v3.3.1 → v3.3.2](https://github.com/pycqa/pylint.git/compare/v3.3.1...v3.3.2) - [github.com/ansible/ansible-lint: v24.9.2 → v24.10.0](https://github.com/ansible/ansible-lint/compare/v24.9.2...v24.10.0) --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Kate Case --- .pre-commit-config.yaml | 10 +++++----- src/molecule/command/__init__.py | 2 +- tests/unit/command/test_list.py | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c51d70105..1ead45792 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -49,7 +49,7 @@ repos: - id: black - repo: https://github.com/pappasam/toml-sort - rev: v0.23.1 + rev: v0.24.2 hooks: - id: toml-sort-fix @@ -59,14 +59,14 @@ repos: - id: tox-ini-fmt - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.7.2 + rev: v0.8.1 hooks: - id: ruff args: - --exit-non-zero-on-fix - repo: https://github.com/streetsidesoftware/cspell-cli - rev: v8.15.2 + rev: v8.16.0 hooks: - id: cspell name: Spell check with cspell @@ -80,7 +80,7 @@ repos: pass_filenames: false - repo: https://github.com/pycqa/pylint.git - rev: v3.3.1 + rev: v3.3.2 hooks: - id: pylint args: @@ -134,7 +134,7 @@ repos: --output-file=.config/constraints.txt pyproject.toml files: ^.config\/.*requirements.*$ - repo: https://github.com/ansible/ansible-lint - rev: v24.9.2 + rev: v24.10.0 hooks: - id: ansible-lint stages: [manual] diff --git a/src/molecule/command/__init__.py b/src/molecule/command/__init__.py index 1c6fc4bac..e8b6af613 100644 --- a/src/molecule/command/__init__.py +++ b/src/molecule/command/__init__.py @@ -35,7 +35,7 @@ destroy, # noqa: F401 drivers, # noqa: F401 idempotence, # noqa: F401 - list, # noqa: F401 + list, # noqa: A004, F401 login, # noqa: F401 matrix, # noqa: F401 prepare, # noqa: F401 diff --git a/tests/unit/command/test_list.py b/tests/unit/command/test_list.py index c09cad277..74acb4686 100644 --- a/tests/unit/command/test_list.py +++ b/tests/unit/command/test_list.py @@ -21,7 +21,7 @@ from typing import TYPE_CHECKING -from molecule.command import list +from molecule.command import list # noqa: A004 from molecule.status import Status