Skip to content

Commit ca0c66b

Browse files
committed
backend: remove unused imports
1 parent bfdab4f commit ca0c66b

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

backend/app/admin_auth.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212

1313
from .database import get_database
1414
from .models import AdminSession
15-
from .oauth import github_oauth, GitHubUser
16-
from .config import get_settings
15+
from .oauth import GitHubUser
1716

1817
logger = logging.getLogger(__name__)
1918

backend/app/crud.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
from sqlalchemy import select, desc, and_, func, text
66
from sqlalchemy.ext.asyncio import AsyncSession
7-
from sqlalchemy.orm import selectinload, joinedload, contains_eager
87
from typing import List, Optional, Dict, Any
98
from datetime import datetime, UTC
109
import logging

backend/app/database.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
import logging
55
from sqlalchemy.ext.asyncio import create_async_engine, AsyncSession, async_sessionmaker
6-
from sqlalchemy.orm import sessionmaker
76
from sqlalchemy.exc import OperationalError, StatementError
87
from .models import Base
98
from .config import get_settings

0 commit comments

Comments
 (0)