From 71205b2bc15603cd873c6fe1db97e810ee7a0f51 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 16:55:41 +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/flake8: 6.0.0 → 7.3.0](https://github.com/pycqa/flake8/compare/6.0.0...7.3.0) - https://github.com/ambv/black → https://github.com/psf/black-pre-commit-mirror - [github.com/psf/black-pre-commit-mirror: 23.3.0 → 26.3.1](https://github.com/psf/black-pre-commit-mirror/compare/23.3.0...26.3.1) - https://github.com/asottile/reorder_python_imports → https://github.com/asottile/reorder-python-imports - [github.com/asottile/reorder-python-imports: v3.9.0 → v3.16.0](https://github.com/asottile/reorder-python-imports/compare/v3.9.0...v3.16.0) - [github.com/pre-commit/mirrors-mypy: v1.10.1 → v1.19.1](https://github.com/pre-commit/mirrors-mypy/compare/v1.10.1...v1.19.1) --- .pre-commit-config.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 35435cc..042e2cb 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -7,21 +7,21 @@ repos: language: script stages: [ commit-msg ] - repo: https://github.com/pycqa/flake8 - rev: 6.0.0 + rev: 7.3.0 hooks: - id: flake8 - - repo: https://github.com/ambv/black - rev: 23.3.0 + - repo: https://github.com/psf/black-pre-commit-mirror + rev: 26.3.1 hooks: - id: black language_version: python3 - - repo: https://github.com/asottile/reorder_python_imports - rev: v3.9.0 + - repo: https://github.com/asottile/reorder-python-imports + rev: v3.16.0 hooks: - id: reorder-python-imports args: [--py3-plus] - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.10.1 # Use the sha / tag you want to point at + rev: v1.19.1 # Use the sha / tag you want to point at hooks: - id: mypy additional_dependencies: ['types-requests'] \ No newline at end of file From 96d00af7d38379f56afedc6c3d2fb16c25817efc Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 16:56:00 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- edusign/models/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/edusign/models/__init__.py b/edusign/models/__init__.py index 7103e81..5888553 100644 --- a/edusign/models/__init__.py +++ b/edusign/models/__init__.py @@ -3,5 +3,4 @@ from edusign.models.professors import Professors from edusign.models.students import Students - __all__ = ["Students", "Professors", "Groups", "Courses"]