Fix ImportError: remove stale SettingsCreate and ChangePinRequest from schemas registry

These were removed in the auth migration but schemas/__init__.py still imported them.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Kyle 2026-02-25 08:04:11 +08:00
parent 4a98b67b0b
commit 9b261574ca

View File

@ -1,4 +1,4 @@
from app.schemas.settings import SettingsCreate, SettingsUpdate, SettingsResponse, ChangePinRequest from app.schemas.settings import SettingsUpdate, SettingsResponse
from app.schemas.todo import TodoCreate, TodoUpdate, TodoResponse from app.schemas.todo import TodoCreate, TodoUpdate, TodoResponse
from app.schemas.calendar_event import CalendarEventCreate, CalendarEventUpdate, CalendarEventResponse from app.schemas.calendar_event import CalendarEventCreate, CalendarEventUpdate, CalendarEventResponse
from app.schemas.reminder import ReminderCreate, ReminderUpdate, ReminderResponse from app.schemas.reminder import ReminderCreate, ReminderUpdate, ReminderResponse
@ -8,10 +8,8 @@ from app.schemas.person import PersonCreate, PersonUpdate, PersonResponse
from app.schemas.location import LocationCreate, LocationUpdate, LocationResponse from app.schemas.location import LocationCreate, LocationUpdate, LocationResponse
__all__ = [ __all__ = [
"SettingsCreate",
"SettingsUpdate", "SettingsUpdate",
"SettingsResponse", "SettingsResponse",
"ChangePinRequest",
"TodoCreate", "TodoCreate",
"TodoUpdate", "TodoUpdate",
"TodoResponse", "TodoResponse",