mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 12:04:51 +00:00
Add missing update_profile to docs and Client
This commit is contained in:
parent
20de3fccdf
commit
fd4bd754cc
2 changed files with 4 additions and 1 deletions
|
|
@ -226,6 +226,7 @@ def pyrogram_api():
|
|||
set_profile_photo
|
||||
delete_profile_photos
|
||||
update_username
|
||||
update_profile
|
||||
block_user
|
||||
unblock_user
|
||||
""",
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue