Corrected faulty import
This commit is contained in:
parent
8951f73c53
commit
ce38ee5d98
1 changed files with 2 additions and 1 deletions
|
|
@ -1,9 +1,10 @@
|
|||
import os
|
||||
from sqlalchemy.ext.asyncio import create_async_engine, AsyncSession, async_sessionmaker
|
||||
from sqlalchemy.pool import StaticPool
|
||||
from database.models import Base
|
||||
import logging
|
||||
|
||||
from database.models.generic_model import Base
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
DATABASE_URL = os.getenv("DATABASE_URL", "sqlite+aiosqlite:///./data/sage_dataven.db")
|
||||
|
|
|
|||
Loading…
Reference in a new issue