style: reformat import block in main.py
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
31e030eaac
commit
e60dee5015
1 changed files with 7 additions and 1 deletions
|
|
@ -8,7 +8,13 @@ from fastapi import FastAPI # noqa: E402
|
||||||
from fastapi.middleware.cors import CORSMiddleware # noqa: E402
|
from fastapi.middleware.cors import CORSMiddleware # noqa: E402
|
||||||
|
|
||||||
from db import create_db_and_tables # noqa: E402
|
from db import create_db_and_tables # noqa: E402
|
||||||
from innercontext.api import health, inventory, products, routines, skincare # noqa: E402
|
from innercontext.api import ( # noqa: E402
|
||||||
|
health,
|
||||||
|
inventory,
|
||||||
|
products,
|
||||||
|
routines,
|
||||||
|
skincare,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@asynccontextmanager
|
@asynccontextmanager
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue