mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Added full support of Bot API 7.11 (#1601)
* Added full support of Bot API 7.11 * Small fixes * Added changelog
This commit is contained in:
parent
4531c3628c
commit
405bbcc36f
165 changed files with 1619 additions and 573 deletions
|
|
@ -2,7 +2,7 @@
|
|||
getUpdates
|
||||
##########
|
||||
|
||||
Returns: :obj:`List[Update]`
|
||||
Returns: :obj:`list[Update]`
|
||||
|
||||
.. automodule:: aiogram.methods.get_updates
|
||||
:members:
|
||||
|
|
@ -19,7 +19,7 @@ As bot method
|
|||
|
||||
.. code-block::
|
||||
|
||||
result: List[Update] = await bot.get_updates(...)
|
||||
result: list[Update] = await bot.get_updates(...)
|
||||
|
||||
|
||||
Method as object
|
||||
|
|
@ -35,4 +35,4 @@ With specific bot
|
|||
|
||||
.. code-block:: python
|
||||
|
||||
result: List[Update] = await bot(GetUpdates(...))
|
||||
result: list[Update] = await bot(GetUpdates(...))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue