From 01837bd24b5ce645ca6ea9d0fb1fc27c0234ae07 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 17 Aug 2026 22:25:52 +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/pycqa/isort: 5.13.2 → 9.0.0b5](https://github.com/pycqa/isort/compare/5.13.2...9.0.0b5) - [github.com/pycqa/flake8: 7.0.0 → 7.3.0](https://github.com/pycqa/flake8/compare/7.0.0...7.3.0) - https://github.com/psf/black → https://github.com/psf/black-pre-commit-mirror - [github.com/psf/black-pre-commit-mirror: 24.4.2 → 26.5.1](https://github.com/psf/black-pre-commit-mirror/compare/24.4.2...26.5.1) - [github.com/PyCQA/pylint: v3.1.0 → v4.0.7](https://github.com/PyCQA/pylint/compare/v3.1.0...v4.0.7) - [github.com/PyCQA/bandit: 1.7.8 → 1.9.4](https://github.com/PyCQA/bandit/compare/1.7.8...1.9.4) - [github.com/pre-commit/mirrors-mypy: v1.10.0 → v2.3.1](https://github.com/pre-commit/mirrors-mypy/compare/v1.10.0...v2.3.1) - [github.com/codespell-project/codespell: v2.2.6 → v2.4.3](https://github.com/codespell-project/codespell/compare/v2.2.6...v2.4.3) - [github.com/pre-commit/pre-commit-hooks: v4.6.0 → v6.0.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.6.0...v6.0.0) - [github.com/python-jsonschema/check-jsonschema: 0.28.2 → 0.38.0](https://github.com/python-jsonschema/check-jsonschema/compare/0.28.2...0.38.0) --- .pre-commit-config.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6f0b796..7660de9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,23 +1,23 @@ repos: - repo: https://github.com/pycqa/isort - rev: 5.13.2 + rev: 9.0.0b5 hooks: - id: isort - repo: https://github.com/pycqa/flake8 - rev: 7.0.0 + rev: 7.3.0 hooks: - id: flake8 - - repo: https://github.com/psf/black - rev: 24.4.2 + - repo: https://github.com/psf/black-pre-commit-mirror + rev: 26.5.1 hooks: - id: black additional_dependencies: - click==8.0.4 - repo: https://github.com/PyCQA/pylint - rev: v3.1.0 + rev: v4.0.7 hooks: - id: pylint args: [ @@ -26,25 +26,25 @@ repos: ] - repo: https://github.com/PyCQA/bandit - rev: 1.7.8 + rev: 1.9.4 hooks: - id: bandit exclude: ^tests/ - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.10.0 + rev: v2.3.1 hooks: - id: mypy additional_dependencies: ['types-PyYAML', 'types-requests', 'pytest'] - repo: https://github.com/codespell-project/codespell - rev: v2.2.6 + rev: v2.4.3 hooks: - id: codespell args: ['--write-changes'] - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.6.0 + rev: v6.0.0 hooks: - id: end-of-file-fixer - id: trailing-whitespace @@ -60,7 +60,7 @@ repos: - id: no-commit-to-branch - repo: https://github.com/python-jsonschema/check-jsonschema - rev: 0.28.2 + rev: 0.38.0 hooks: - id: check-jsonschema name: Check movie schema From b080637fc8b10a9f5d36870dd8d0e519a298c76b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 17 Aug 2026 22:26:19 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- mcu_calendar/webscraping.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcu_calendar/webscraping.py b/mcu_calendar/webscraping.py index 3fa76ae..7c18006 100644 --- a/mcu_calendar/webscraping.py +++ b/mcu_calendar/webscraping.py @@ -100,7 +100,7 @@ class TvGenre(Enum): def query_all_pages( - func: Callable[[TMDB.Discover, int, Dict[str, Any]], Dict[str, Any]] + func: Callable[[TMDB.Discover, int, Dict[str, Any]], Dict[str, Any]], ) -> Callable[[Dict[str, Any]], List[Dict[str, Any]]]: """ Function decorator that aggregates the results of func over multiple pages