From 833b96e2b80f746e96ec325b370a196dd12da5ad Mon Sep 17 00:00:00 2001 From: andrew000 <11490628+andrew000@users.noreply.github.com> Date: Sun, 18 Sep 2022 19:54:13 +0300 Subject: [PATCH] Add new field to CHAT_MEMBER in dataset.py --- tests/types/dataset.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/types/dataset.py b/tests/types/dataset.py index bd73f377..433176fe 100644 --- a/tests/types/dataset.py +++ b/tests/types/dataset.py @@ -59,7 +59,8 @@ CHAT_MEMBER = { "can_restrict_members": True, "can_pin_messages": True, "can_promote_members": False, - "can_manage_voice_chats": True, + "can_manage_voice_chats": True, # Deprecated + "can_manage_video_chats": True, "is_anonymous": False, }