style: fix import sort order in app.py

This commit is contained in:
Johan Lundberg 2026-02-19 14:33:57 +01:00
parent 5a24a9c70b
commit 34450aa38f
No known key found for this signature in database
GPG key ID: A6C152738D03C7D1

View file

@ -10,8 +10,8 @@ from fastapi.staticfiles import StaticFiles
from fastapi.templating import Jinja2Templates from fastapi.templating import Jinja2Templates
from starlette.middleware.sessions import SessionMiddleware from starlette.middleware.sessions import SessionMiddleware
from porchlight.authn.password import PasswordService
from porchlight.admin.routes import router as admin_router from porchlight.admin.routes import router as admin_router
from porchlight.authn.password import PasswordService
from porchlight.authn.routes import router as authn_router from porchlight.authn.routes import router as authn_router
from porchlight.authn.webauthn import WebAuthnService from porchlight.authn.webauthn import WebAuthnService
from porchlight.config import Settings, StorageBackend from porchlight.config import Settings, StorageBackend