Add missing update_profile to docs and Client

This commit is contained in:
Dan 2020-05-02 21:16:52 +02:00
parent 20de3fccdf
commit fd4bd754cc
2 changed files with 4 additions and 1 deletions

View File

@ -226,6 +226,7 @@ def pyrogram_api():
set_profile_photo
delete_profile_photos
update_username
update_profile
block_user
unblock_user
""",

View File

@ -26,6 +26,7 @@ from .get_users import GetUsers
from .iter_profile_photos import IterProfilePhotos
from .set_profile_photo import SetProfilePhoto
from .unblock_user import UnblockUser
from .update_profile import UpdateProfile
from .update_username import UpdateUsername
@ -40,6 +41,7 @@ class Users(
UpdateUsername,
GetProfilePhotosCount,
IterProfilePhotos,
UnblockUser
UnblockUser,
UpdateProfile
):
pass