Skip to content

Commit

Permalink
chore: 些細な変更
Browse files Browse the repository at this point in the history
  • Loading branch information
yupix committed Apr 27, 2022
1 parent e59d0d4 commit bea4cc4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions mipac/core/models/poll.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
from typing import List, Optional
from __future__ import annotations

__all__ = ['RawPollChoices', 'RawPoll']
from typing import List, Optional

from mipac.types import PollPayload

__all__ = ['RawPollChoices', 'RawPoll']


class RawPollChoices:
"""
Expand Down
2 changes: 1 addition & 1 deletion mipac/manager/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ def _create_note_instance(self, note_id: str) -> NoteManager:
return NoteManager(note_id, session=self.__session, client=self)

async def get_me(self) -> User:
return await self.user.action.get_me()
return await self.user.action.get_me()

0 comments on commit bea4cc4

Please sign in to comment.