chore: add missing return statement (#8339)

Signed-off-by: Chinmay D. Pai <chinmaydpai@gmail.com>
This commit is contained in:
Chinmay Pai 2019-09-04 20:37:37 +05:30 committed by GitHub
parent 1da536a3fd
commit ce3bc8e133
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -102,7 +102,7 @@ def reset(doctype):
@frappe.whitelist()
def get_users_with_role(role):
frappe.only_for("System Manager")
_get_user_with_role(role)
return _get_user_with_role(role)
@frappe.whitelist()
def get_standard_permissions(doctype):