Skip to content

Commit 25a3d81

Browse files
author
Chao Huang
committed
fix: remove unused imports flagged by ruff
1 parent d9f31f7 commit 25a3d81

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

backend/app/api/admin/endpoints/teams.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@
44
import re
55
from datetime import datetime
66
from decimal import Decimal
7-
from typing import List, Optional
7+
from typing import List
88
from uuid import UUID
99

1010
from fastapi import APIRouter, Depends, HTTPException, status
1111
from pydantic import BaseModel
1212
from sqlalchemy import case, func, select
1313
from sqlalchemy.ext.asyncio import AsyncSession
14-
from sqlalchemy.orm import joinedload
1514

1615
from app.api.deps import get_current_user_from_jwt
1716
from app.core.database import get_db

backend/app/services/team.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from uuid import UUID
88

99
from fastapi import HTTPException
10-
from sqlalchemy import func, select
10+
from sqlalchemy import select
1111
from sqlalchemy.ext.asyncio import AsyncSession
1212
from sqlalchemy.orm import joinedload
1313

0 commit comments

Comments
 (0)