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:
Alex Root Junior 2024-11-02 16:13:45 +02:00 committed by GitHub
parent 4531c3628c
commit 405bbcc36f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
165 changed files with 1619 additions and 573 deletions

View file

@ -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(...))