From bb6ae7a4f84c7957531533994cfcd2effda8b6c6 Mon Sep 17 00:00:00 2001 From: Michael Herman Date: Wed, 8 Sep 2021 18:33:52 -0500 Subject: [PATCH] remove import --- project/app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/app/main.py b/project/app/main.py index 852a3c8..b1c3315 100644 --- a/project/app/main.py +++ b/project/app/main.py @@ -2,7 +2,7 @@ from fastapi import Depends, FastAPI from sqlalchemy.ext.asyncio import AsyncSession from sqlalchemy import select -from app.db import get_session, create_db_and_tables +from app.db import get_session from app.models import Song, SongCreate app = FastAPI()