From 9d4c1b0824379c13e8a8d25e29520d1499f73d83 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 2 Jun 2025 20:19:45 +0000 Subject: [PATCH 1/2] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/asottile/reorder-python-imports: v3.14.0 → v3.15.0](https://github.com/asottile/reorder-python-imports/compare/v3.14.0...v3.15.0) - [github.com/psf/black: 24.10.0 → 25.1.0](https://github.com/psf/black/compare/24.10.0...25.1.0) - [github.com/PyCQA/flake8: 7.1.1 → 7.2.0](https://github.com/PyCQA/flake8/compare/7.1.1...7.2.0) - [github.com/pre-commit/mirrors-mypy: v1.14.1 → v1.16.0](https://github.com/pre-commit/mirrors-mypy/compare/v1.14.1...v1.16.0) --- .pre-commit-config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f832bdf..d6e2e13 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -9,16 +9,16 @@ repos: args: [--remove] - id: check-yaml - repo: https://github.com/asottile/reorder-python-imports - rev: v3.14.0 + rev: v3.15.0 hooks: - id: reorder-python-imports args: ['--application-directories=.:src', --py3-plus] - repo: https://github.com/psf/black - rev: 24.10.0 + rev: 25.1.0 hooks: - id: black - repo: https://github.com/PyCQA/flake8 - rev: 7.1.1 + rev: 7.2.0 hooks: - id: flake8 additional_dependencies: [flake8-bugbear] @@ -35,7 +35,7 @@ repos: hooks: - id: autoflake - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.14.1 + rev: v1.16.0 hooks: - id: mypy files: ^(src/|tests/) From 15e1bafb0946c789d36356d5787d2e53ba66e988 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 2 Jun 2025 20:21:43 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/pytest_flask/plugin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pytest_flask/plugin.py b/src/pytest_flask/plugin.py index 6bb78d5..f9f1193 100644 --- a/src/pytest_flask/plugin.py +++ b/src/pytest_flask/plugin.py @@ -1,9 +1,9 @@ #!/usr/bin/env python """ - A py.test plugin which helps testing Flask applications. +A py.test plugin which helps testing Flask applications. - :copyright: (c) by Vital Kudzelka - :license: MIT +:copyright: (c) by Vital Kudzelka +:license: MIT """ from typing import Any from typing import List