Skip to content

Commit

Permalink
chore: requestの戻り地をanyに
Browse files Browse the repository at this point in the history
  • Loading branch information
yupix committed Apr 20, 2022
1 parent 94e5376 commit 4e778dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mipac/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def __init__(self, url: str, token: str) -> None:
self.__url: str = url
self.__token: str = token

async def request(self, route: Route, **kwargs):
async def request(self, route: Route, **kwargs) -> Any:
headers: Dict[str, str] = {
'User-Agent': self.user_agent,
}
Expand Down

0 comments on commit 4e778dd

Please sign in to comment.