Fixed mypy

This commit is contained in:
JRoot Junior 2024-07-06 20:59:07 +03:00
parent ad28ce9689
commit 1f41b14f95
No known key found for this signature in database
GPG key ID: 738964250D5FF6E2

View file

@ -24,7 +24,7 @@ ChatMemberUnion = Union[
ChatMemberCollection = Tuple[Type[ChatMember], ...] ChatMemberCollection = Tuple[Type[ChatMember], ...]
ChatMemberAdapter = TypeAdapter( ChatMemberAdapter: TypeAdapter[ChatMemberUnion] = TypeAdapter(
Annotated[ Annotated[
ChatMemberUnion, ChatMemberUnion,
Field(discriminator="status"), Field(discriminator="status"),