mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
AIOG-T-64 logOut type annotation fix
This commit is contained in:
parent
8fbc182fc9
commit
ee523afb8c
1 changed files with 1 additions and 1 deletions
|
|
@ -176,7 +176,7 @@ class Bot(BaseBot, DataMixin, ContextInstanceMixin):
|
|||
result = await self.request(api.Methods.GET_ME, payload)
|
||||
return types.User(**result)
|
||||
|
||||
async def log_out(self) -> types.User:
|
||||
async def log_out(self) -> base.Boolean:
|
||||
"""
|
||||
Use this method to log out from the cloud Bot API server before launching
|
||||
the bot locally. You **must** log out the bot before running it locally,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue