diff --git a/mipac/models/admin.py b/mipac/models/admin.py index 197540f..6fbd783 100644 --- a/mipac/models/admin.py +++ b/mipac/models/admin.py @@ -3,7 +3,7 @@ from __future__ import annotations from datetime import datetime from typing import TYPE_CHECKING -from mipac.models.user import MeDetailed, UserDetailedNotMe, packed_user +from mipac.models.user import UserDetailedNotMe, packed_user from mipac.types.admin import ( IIndexStat, IModerationLog, diff --git a/mipac/types/roles.py b/mipac/types/roles.py index c36e486..165aa08 100644 --- a/mipac/types/roles.py +++ b/mipac/types/roles.py @@ -1,6 +1,6 @@ from __future__ import annotations -from typing import TYPE_CHECKING, Literal, NotRequired, TypedDict, TypeGuard +from typing import TYPE_CHECKING, Literal, TypedDict, TypeGuard if TYPE_CHECKING: from mipac.types.user import IMeDetailedSchema, IUserDetailed