Update imports to use shared.models instead of app-specific models
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -4,8 +4,8 @@ from __future__ import annotations
|
|||||||
from sqlalchemy import select, update, func
|
from sqlalchemy import select, update, func
|
||||||
from sqlalchemy.ext.asyncio import AsyncSession
|
from sqlalchemy.ext.asyncio import AsyncSession
|
||||||
|
|
||||||
from market.models.market import CartItem
|
from shared.models.market import CartItem
|
||||||
from events.models.calendars import CalendarEntry
|
from shared.models.calendars import CalendarEntry
|
||||||
|
|
||||||
|
|
||||||
async def adopt_session_for_user(
|
async def adopt_session_for_user(
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ from __future__ import annotations
|
|||||||
from sqlalchemy import select, update
|
from sqlalchemy import select, update
|
||||||
from sqlalchemy.ext.asyncio import AsyncSession
|
from sqlalchemy.ext.asyncio import AsyncSession
|
||||||
|
|
||||||
from events.models.calendars import CalendarEntry, Calendar
|
from shared.models.calendars import CalendarEntry, Calendar
|
||||||
|
|
||||||
|
|
||||||
async def claim_entries_for_order(
|
async def claim_entries_for_order(
|
||||||
|
|||||||
Reference in New Issue
Block a user