From cd24f3223927d3ea7bfa3443c75bfa759502e45f Mon Sep 17 00:00:00 2001 From: 14987 Date: Thu, 1 Feb 2024 16:01:36 +0530 Subject: [PATCH] fix: Resolve lint issue --- frappe/core/doctype/user/user.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frappe/core/doctype/user/user.py b/frappe/core/doctype/user/user.py index 6be4f50d79..abad648a77 100644 --- a/frappe/core/doctype/user/user.py +++ b/frappe/core/doctype/user/user.py @@ -824,10 +824,10 @@ def update_password( """Update password for the current user. Args: - new_password (str): New password. - logout_all_sessions (int, optional): If set to 1, all other sessions will be logged out. Defaults to 0. - key (str, optional): Password reset key. Defaults to None. - old_password (str, optional): Old password. Defaults to None. + new_password (str): New password. + logout_all_sessions (int, optional): If set to 1, all other sessions will be logged out. Defaults to 0. + key (str, optional): Password reset key. Defaults to None. + old_password (str, optional): Old password. Defaults to None. """ if len(new_password) > MAX_PASSWORD_SIZE: