Skip to content

Commit

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

updates:
- [github.com/pre-commit/mirrors-prettier: v3.0.0-alpha.4 → v3.0.0-alpha.6](pre-commit/mirrors-prettier@v3.0.0-alpha.4...v3.0.0-alpha.6)
- [github.com/sirosen/check-jsonschema: 0.19.2 → 0.21.0](python-jsonschema/check-jsonschema@0.19.2...0.21.0)
- [github.com/adrienverge/yamllint.git: v1.28.0 → v1.29.0](https://github.com/adrienverge/yamllint.git/compare/v1.28.0...v1.29.0)
- [github.com/PyCQA/isort: 5.11.4 → 5.12.0](PyCQA/isort@5.11.4...5.12.0)
- [github.com/psf/black: 22.12.0 → 23.1.0](psf/black@22.12.0...23.1.0)
- [github.com/pre-commit/mirrors-mypy: v0.991 → v1.0.1](pre-commit/mirrors-mypy@v0.991...v1.0.1)
- [github.com/pycqa/pylint: v2.15.9 → v2.16.4](pylint-dev/pylint@v2.15.9...v2.16.4)
- [github.com/jazzband/pip-tools: 6.12.1 → 6.12.3](jazzband/pip-tools@6.12.1...6.12.3)

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

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] authored Mar 19, 2023
1 parent 49f23c2 commit 04a9f14
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ repos:
- id: check-useless-excludes
- repo: https://github.com/pre-commit/mirrors-prettier
# keep it before yamllint
rev: v3.0.0-alpha.4
rev: v3.0.0-alpha.6
hooks:
- id: prettier
always_run: true
Expand All @@ -39,7 +39,7 @@ repos:
# args: [--relative, --no-progress, --no-summary]
# name: Spell check with cspell
- repo: https://github.com/sirosen/check-jsonschema
rev: 0.19.2
rev: 0.21.0
hooks:
- id: check-github-workflows
- repo: https://github.com/pre-commit/pre-commit-hooks.git
Expand Down Expand Up @@ -72,21 +72,21 @@ repos:
hooks:
- id: doc8
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.28.0
rev: v1.29.0
hooks:
- id: yamllint
files: \.(yaml|yml)$
types: [file, yaml]
entry: yamllint --strict
- repo: https://github.com/PyCQA/isort
rev: 5.11.4
rev: 5.12.0
hooks:
- id: isort
args:
# https://github.com/pre-commit/mirrors-isort/issues/9#issuecomment-624404082
- --filter-files
- repo: https://github.com/psf/black
rev: 22.12.0
rev: 23.1.0
hooks:
- id: black
language_version: python3
Expand All @@ -108,15 +108,15 @@ repos:
- id: pyupgrade
args: ["--py38-plus"]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.991
rev: v1.0.1
hooks:
- id: mypy
# empty args needed in order to match mypy cli behavior
args: [--strict]
additional_dependencies:
- pytest
- repo: https://github.com/pycqa/pylint
rev: v2.15.9
rev: v2.16.4
hooks:
- id: pylint
args:
Expand All @@ -125,7 +125,7 @@ repos:
- ansible-core>=2.14.0
- pytest
- repo: https://github.com/jazzband/pip-tools
rev: 6.12.1
rev: 6.12.3
hooks:
- id: pip-compile
name: lock
Expand Down
1 change: 0 additions & 1 deletion src/pia/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ def main(args: list[str] | None = None) -> None:

options = parser.parse_args(args)
if options.command == "list":

colmap = get_local_collections()
if options.format == "plain":
for collection, data in colmap.items():
Expand Down

0 comments on commit 04a9f14

Please sign in to comment.