Skip to content

Commit

Permalink
chore: importの修正
Browse files Browse the repository at this point in the history
  • Loading branch information
yupix committed Oct 31, 2022
1 parent 3dddcf6 commit bf0558c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions mipac/types/page.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

if TYPE_CHECKING:
from mipac.types.drive import IFileProperties
from mipac.types.user import UserPayload
from mipac.types.user import IUserLite

__all__ = (
'PageContentPayload',
Expand Down Expand Up @@ -109,7 +109,7 @@ class PagePayload(TypedDict):
created_at: str
updated_at: str
user_id: str
user: UserPayload
user: IUserLite
content: list[PageContentPayload]
variable: list[VariablePayload]
title: str
Expand Down
5 changes: 3 additions & 2 deletions mipac/types/reaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

from typing import TYPE_CHECKING, TypedDict


if TYPE_CHECKING:
from mipac.types.user import UserPayload
from mipac.types.user import IUserLite

__all__ = ('NoteReactionPayload',)


class NoteReactionPayload(TypedDict):
id: str
created_at: str
user: UserPayload
user: IUserLite
type: str

0 comments on commit bf0558c

Please sign in to comment.