Skip to content

Commit

Permalink
chore: pre-commit autoupdate (#250)
Browse files Browse the repository at this point in the history
* chore: pre-commit autoupdate

updates:
- [github.com/astral-sh/ruff-pre-commit: v0.5.6 → v0.6.3](astral-sh/ruff-pre-commit@v0.5.6...v0.6.3)
- [github.com/streetsidesoftware/cspell-cli: v8.13.1 → v8.13.3](streetsidesoftware/cspell-cli@v8.13.1...v8.13.3)
- [github.com/pycqa/pylint.git: v3.2.6 → v3.2.7](https://github.com/pycqa/pylint.git/compare/v3.2.6...v3.2.7)
- [github.com/pre-commit/mirrors-mypy.git: v1.11.1 → v1.11.2](https://github.com/pre-commit/mirrors-mypy.git/compare/v1.11.1...v1.11.2)

* chore: auto fixes from pre-commit.com hooks

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Sorin Sbarnea <sorin.sbarnea@gmail.com>
  • Loading branch information
pre-commit-ci[bot] and ssbarnea authored Sep 5, 2024
1 parent cff4a55 commit 49f3bfd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ repos:
- id: tox-ini-fmt

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.6
rev: v0.6.3
hooks:
- id: ruff
args:
- --exit-non-zero-on-fix

- repo: https://github.com/streetsidesoftware/cspell-cli
rev: v8.13.1
rev: v8.13.3
hooks:
- id: cspell
name: Spell check with cspell
Expand All @@ -80,7 +80,7 @@ repos:
pass_filenames: false

- repo: https://github.com/pycqa/pylint.git
rev: v3.2.6
rev: v3.2.7
hooks:
- id: pylint
args:
Expand All @@ -93,7 +93,7 @@ repos:
- tox

- repo: https://github.com/pre-commit/mirrors-mypy.git
rev: v1.11.1
rev: v1.11.2
hooks:
- id: mypy
additional_dependencies:
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/test_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def test_editable_not_local(
config=config,
)

def install_core(self: Installer) -> None: # noqa: ARG001
def install_core(self: Installer) -> None:
"""Don't install core.
Args:
Expand Down Expand Up @@ -1195,7 +1195,7 @@ def test_local_collection_without_tar_install(
installer.run()
pre_mtime = os.lstat(config.site_pkg_collections_path / "ansible" / "posix").st_mtime

def install_local_collection(self: Installer, collection: Collection) -> None: # noqa: ARG001
def install_local_collection(self: Installer, collection: Collection) -> None:
"""Do nothing.
Args:
Expand Down

0 comments on commit 49f3bfd

Please sign in to comment.