Fix: Added missing Optional import in taxis API to resolve Render deploy failure

This commit is contained in:
2026-02-22 10:50:36 -05:00
parent 820b29529b
commit e07b0a8601
2 changed files with 73 additions and 73 deletions

View File

@ -3,7 +3,7 @@ from sqlmodel import Session, select
import os
import shutil
from uuid import uuid4, UUID
from typing import List
from typing import List, Optional
from app.core.database import get_session
from app.models.taxi import Taxi
from app.api.deps import get_current_admin