From f1c20e099d15296c239a8f1b20a282df071d6526 Mon Sep 17 00:00:00 2001 From: F-G Fernandez <26927750+frgfm@users.noreply.github.com> Date: Fri, 27 Oct 2023 17:51:22 +0200 Subject: [PATCH] style: Fixes typing --- src/app/db.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/db.py b/src/app/db.py index 9a23218..37079d6 100644 --- a/src/app/db.py +++ b/src/app/db.py @@ -3,9 +3,10 @@ # All rights reserved. # Copying and/or distributing is strictly prohibited without the express permission of its copyright owner. +from sqlalchemy.ext.asyncio.engine import AsyncEngine from sqlalchemy.orm import sessionmaker from sqlmodel import SQLModel, create_engine, select -from sqlmodel.ext.asyncio.session import AsyncEngine, AsyncSession +from sqlmodel.ext.asyncio.session import AsyncSession from app.core.config import settings from app.core.security import hash_password