Update feed_update call to include bot parameter (#1733)

bot parameter is required in dispatcher.feed_update method but is not present in the documentation
This commit is contained in:
Samandar Murodjonov 2025-11-04 08:34:51 +09:00 committed by GitHub
parent 4caf56814e
commit af899e6773
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -115,7 +115,7 @@ or :meth:`aiogram.dispatcher.dispatcher.Dispatcher.feed_update` methods.
.. code-block:: python
update = Update.model_validate(await request.json(), context={"bot": bot})
await dispatcher.feed_update(update)
await dispatcher.feed_update(bot, update)
.. note::