chore: fix comment typo in frappe/desk/reportview.py (#19517)

This commit is contained in:
jiangying 2023-01-08 22:34:14 +08:00 committed by GitHub
parent e315c4f4b6
commit 8273c9f244
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ from frappe.utils import add_user_info, format_duration
@frappe.read_only()
def get():
args = get_form_params()
# If virtual doctype get data from controller het_list method
# If virtual doctype, get data from controller get_list method
if is_virtual_doctype(args.doctype):
controller = get_controller(args.doctype)
data = compress(controller.get_list(args))