We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb6ae7a commit f6c58feCopy full SHA for f6c58fe
project/app/main.py
@@ -1,6 +1,6 @@
1
from fastapi import Depends, FastAPI
2
-from sqlalchemy.ext.asyncio import AsyncSession
3
from sqlalchemy import select
+from sqlalchemy.ext.asyncio import AsyncSession
4
5
from app.db import get_session
6
from app.models import Song, SongCreate
project/app/models.py
@@ -1,5 +1,3 @@
-from typing import Optional
-
from sqlmodel import SQLModel, Field
0 commit comments