mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
parse_mode should be UNSET instead of None (#877)
* fix: parse_mode should be UNSET instead of None #876 * docs: add changelog * docs: fixed changelog name * fix: changelog typo fix
This commit is contained in:
parent
b8aa03bc38
commit
ffe9506dc5
2 changed files with 2 additions and 1 deletions
|
|
@ -1753,7 +1753,7 @@ class Message(TelegramObject):
|
|||
self,
|
||||
chat_id: Union[int, str],
|
||||
caption: Optional[str] = None,
|
||||
parse_mode: Optional[str] = None,
|
||||
parse_mode: Optional[str] = UNSET,
|
||||
caption_entities: Optional[List[MessageEntity]] = None,
|
||||
disable_notification: Optional[bool] = None,
|
||||
reply_to_message_id: Optional[int] = None,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue