remove gspread

This commit is contained in:
2024-05-17 12:50:43 +02:00
parent 536fd65203
commit 606af2113d
3 changed files with 3 additions and 8 deletions

View File

@@ -1,7 +1,5 @@
from typing import Optional, List
import gspread
from typing import Optional
from pydantic import BaseModel
from enum import Enum
class GoogleFile(BaseModel):
file_id: str

View File

@@ -1,9 +1,7 @@
from fastapi import APIRouter, HTTPException, Security
from fastapi import APIRouter
from app.models import Song
from app.sql_models import SqlSong, SqlVote
from app.dependencies import session
from app.routers.user import get_current_user, User
from typing import Annotated
router = APIRouter(
prefix="/songs",

View File

@@ -1,6 +1,5 @@
from sqlalchemy import Column, String, Integer, Boolean, PickleType, Enum
from sqlalchemy import Column, String, Integer, Boolean, PickleType
from sqlalchemy.orm import declarative_base
from typing import Optional
Base = declarative_base()