Bump butcher

This commit is contained in:
Alex Root Junior 2023-08-04 00:13:21 +03:00
parent 84f9667826
commit cf688a1dac
No known key found for this signature in database
GPG key ID: 074C1D455EBEA4AC
2 changed files with 5 additions and 1 deletions

View file

@ -3075,6 +3075,10 @@ class Message(TelegramObject):
from aiogram.methods import ForwardMessage
assert (
self.chat is not None
), "This method can be used only if chat is present in the message."
return ForwardMessage(
from_chat_id=self.chat.id,
message_id=self.message_id,

View file

@ -148,7 +148,7 @@ features = [
"test",
]
extra-dependencies = [
"butcher @ git+https://github.com/aiogram/butcher.git@v0.1.21"
"butcher @ git+https://github.com/aiogram/butcher.git@v0.1.22"
]
[tool.hatch.envs.dev.scripts]