Skip to content

Commit bdd3ae8

Browse files
committed
⬆️ Update pre-commit and auto fix from hooks
1 parent 137f596 commit bdd3ae8

File tree

5 files changed

+7
-10
lines changed

5 files changed

+7
-10
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ repos:
2020
- id: end-of-file-fixer
2121
- id: trailing-whitespace
2222
- repo: https://github.com/tox-dev/pyproject-fmt
23-
rev: v2.11.1
23+
rev: v2.14.2
2424
hooks:
2525
- id: pyproject-fmt
2626
- repo: https://github.com/abravalheri/validate-pyproject
27-
rev: v0.24.1
27+
rev: v0.25
2828
hooks:
2929
- id: validate-pyproject
3030
- repo: https://github.com/sphinx-contrib/sphinx-lint
@@ -40,7 +40,7 @@ repos:
4040
entry: isort --profile=black
4141
name: isort (python)
4242
- repo: https://github.com/psf/black-pre-commit-mirror
43-
rev: 25.12.0
43+
rev: 26.1.0
4444
hooks:
4545
- id: black
4646
- repo: https://github.com/adamchainz/blacken-docs

docs/conf.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
import os
1515
import re
1616

17-
1817
# Set canonical URL from the Read the Docs Domain
1918
html_baseurl = os.environ.get("READTHEDOCS_CANONICAL_URL", "")
2019

docs/dashboards/panel/fastAPI/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from fastapi import FastAPI, Request
77
from fastapi.templating import Jinja2Templates
88

9-
109
app = FastAPI()
1110
templates = Jinja2Templates(directory="templates")
1211

docs/dashboards/panel/fastapi.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ beginnen, müssen wir einige der grundlegenden Konfigurationen in
2828
definieren den Pfad zum Vorlagenverzeichnis:
2929

3030
.. literalinclude:: fastAPI/main.py
31-
:lineno-start: 10
32-
:lines: 10-11
31+
:lineno-start: 9
32+
:lines: 9-10
3333

3434
#. Nun erstellen wir unsere erste Routine über eine asynchrone Funktion und
3535
verweisen sie an unseren Bokeh-Server:
3636

3737
.. literalinclude:: fastAPI/main.py
38-
:lineno-start: 14
39-
:lines: 14-19
38+
:lineno-start: 13
39+
:lines: 13-18
4040

4141
#. Wie ihr dem Code ansehen könnt, wird ein `Jinja2
4242
<https://fastapi.tiangolo.com/advanced/templates/#using-jinja2templates>`_-Template

fastapi/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
from fastapi import FastAPI
66

7-
87
app = FastAPI()
98

109

0 commit comments

Comments
 (0)