From a5d7c3be4f0db4c88b4d2a6abb0c9dbc7e18a91f Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Sun, 14 Jun 2026 15:42:05 -0400 Subject: [PATCH] fixed fomat issue --- python/api/routers/contact.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/api/routers/contact.py b/python/api/routers/contact.py index 3754dba..57da325 100644 --- a/python/api/routers/contact.py +++ b/python/api/routers/contact.py @@ -9,7 +9,7 @@ from pydantic import BaseModel from sqlalchemy import select from sqlalchemy.orm import selectinload -from python.fastapi_tools.db import DbSession # noqa: TC001 this is a FastAPI needed at runtime +from python.fastapi_tools.db import DbSession # noqa: TC001 this is a FastAPI needed at runtime from python.orm.richie.contact import Contact, ContactRelationship, Need, RelationshipType TEMPLATES_DIR = Path(__file__).parent.parent / "templates"