commit | 99b94af49ffd34bccb76b73c2f06187540444a44 | [log] [tgz] |
---|---|---|
author | Gursheen Anand <gursheen@frappe.io> | Thu Jan 18 15:05:19 2024 +0530 |
committer | Gursheen Anand <gursheen@frappe.io> | Thu Jan 18 15:05:19 2024 +0530 |
tree | d2b1eee4bdf5583332b036ba39af293a9ca2b275 | |
parent | e9bc63aacf20dd83cb7e15494bb8f2f025491991 [diff] |
fix: linting issue
diff --git a/erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py b/erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py index 604bc01..a52aaff 100644 --- a/erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py +++ b/erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py
@@ -134,7 +134,7 @@ def remove_parent_with_no_child(data): data_to_be_removed = False - for parent in data: + for parent in list(data): if "is_group" in parent and parent.get("is_group") == 1: have_child = False for child in data: