File tree Expand file tree Collapse file tree
pyrogram/client/methods/users Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616# You should have received a copy of the GNU Lesser General Public License
1717# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
1818
19- from .delete_profile_photos import DeleteProfilePhotos
19+ from .delete_user_profile_photos import DeleteUserProfilePhotos
2020from .get_me import GetMe
2121from .get_user_profile_photos import GetUserProfilePhotos
2222from .get_users import GetUsers
2626class Users (
2727 GetUserProfilePhotos ,
2828 SetUserProfilePhoto ,
29- DeleteProfilePhotos ,
29+ DeleteUserProfilePhotos ,
3030 GetUsers ,
3131 GetMe
3232):
Original file line number Diff line number Diff line change 2323from ...ext import BaseClient
2424
2525
26- class DeleteProfilePhotos (BaseClient ):
27- def delete_profile_photos (self , id : str or list ):
26+ class DeleteUserProfilePhotos (BaseClient ):
27+ def delete_user_profile_photos (self , id : str or list ):
2828 """Use this method to delete your own profile photos
2929
3030 Args:
You can’t perform that action at this time.
0 commit comments