fix: Indentation
diff --git a/erpnext/accounts/report/gross_profit/gross_profit.py b/erpnext/accounts/report/gross_profit/gross_profit.py
index cdc929b..056b56b 100644
--- a/erpnext/accounts/report/gross_profit/gross_profit.py
+++ b/erpnext/accounts/report/gross_profit/gross_profit.py
@@ -62,14 +62,14 @@
else:
for idx, src in enumerate(gross_profit_data.grouped_data):
- row = []
- for col in group_wise_columns.get(scrub(filters.group_by)):
- row.append(src.get(col))
+ row = []
+ for col in group_wise_columns.get(scrub(filters.group_by)):
+ row.append(src.get(col))
- row.append(filters.currency)
- if idx == len(gross_profit_data.grouped_data)-1:
- row[0] = frappe.bold("Total")
- data.append(row)
+ row.append(filters.currency)
+ if idx == len(gross_profit_data.grouped_data)-1:
+ row[0] = frappe.bold("Total")
+ data.append(row)
return columns, data