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 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"]