diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9cbb910c..87f489a9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -20,7 +20,7 @@ repos: - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/tox-dev/pyproject-fmt - rev: v2.11.1 + rev: v2.12.1 hooks: - id: pyproject-fmt - repo: https://github.com/abravalheri/validate-pyproject @@ -40,7 +40,7 @@ repos: entry: isort --profile=black name: isort (python) - repo: https://github.com/psf/black-pre-commit-mirror - rev: 25.12.0 + rev: 26.1.0 hooks: - id: black - repo: https://github.com/adamchainz/blacken-docs diff --git a/docs/conf.py b/docs/conf.py index edfbb2e0..0cdb382c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -14,7 +14,6 @@ import os import re - # Set canonical URL from the Read the Docs Domain html_baseurl = os.environ.get("READTHEDOCS_CANONICAL_URL", "") diff --git a/docs/dashboards/panel/fastAPI/main.py b/docs/dashboards/panel/fastAPI/main.py index 10bc6cea..026986a0 100644 --- a/docs/dashboards/panel/fastAPI/main.py +++ b/docs/dashboards/panel/fastAPI/main.py @@ -6,7 +6,6 @@ from fastapi import FastAPI, Request from fastapi.templating import Jinja2Templates - app = FastAPI() templates = Jinja2Templates(directory="templates") diff --git a/fastapi/main.py b/fastapi/main.py index 5d1b2d0b..b7a79e80 100644 --- a/fastapi/main.py +++ b/fastapi/main.py @@ -4,7 +4,6 @@ from fastapi import FastAPI - app = FastAPI()