Update hints

This commit is contained in:
Alex Root Junior 2023-07-17 03:09:36 +03:00
parent af4b9cc415
commit 5236329521
No known key found for this signature in database
GPG key ID: 074C1D455EBEA4AC
2 changed files with 10 additions and 8 deletions

View file

@ -24,7 +24,8 @@ class MutableTelegramObject(TelegramObject):
# special sentinel object which used in situation when None might be a useful value
UNSET: Any = sentinel.UNSET
UNSET_PARSE_MODE: Any = sentinel.UNSET_PARSE_MODE
UNSET_DISABLE_WEB_PAGE_PREVIEW = sentinel.UNSET_DISABLE_WEB_PAGE_PREVIEW
UNSET_PROTECT_CONTENT = sentinel.UNSET_PROTECT_CONTENT
UNSET_TYPE = type(sentinel.DEFAULT)
UNSET_DISABLE_WEB_PAGE_PREVIEW: Any = sentinel.UNSET_DISABLE_WEB_PAGE_PREVIEW
UNSET_PROTECT_CONTENT: Any = sentinel.UNSET_PROTECT_CONTENT
UNSET_TYPE: Any = type(UNSET)