ruff: enable T20 lint

and remove a print hello world :)
This commit is contained in:
Marcel Hellwig
2026-01-04 14:49:58 +01:00
parent 5368cad77a
commit 7824828bea
2 changed files with 1 additions and 2 deletions

View File

@@ -5,7 +5,6 @@ from app.tvdb import router as tvdb_router
from fastapi import FastAPI
from starlette_exporter import PrometheusMiddleware, handle_metrics
print("Hello world!")
app = FastAPI(root_path=os.getenv("BASE_PATH"))
app.add_middleware(PrometheusMiddleware)

View File

@@ -16,7 +16,7 @@ extend-select = [
"Q",
"RUF",
"S", "SLOT",
"T10", "TD", "TID",
"T10", "T20", "TD", "TID",
"W",
"YTT"
]