chore: remove debugging print statements
diff --git a/erpnext/accounts/report/sales_register/sales_register.py b/erpnext/accounts/report/sales_register/sales_register.py
index 42fc5b3..fd82555 100644
--- a/erpnext/accounts/report/sales_register/sales_register.py
+++ b/erpnext/accounts/report/sales_register/sales_register.py
@@ -48,7 +48,6 @@
invoice_list, additional_table_columns, include_payments
)
- print("Accounts", tax_accounts)
if not invoice_list:
msgprint(_("No record found"))
return columns, invoice_list
@@ -127,7 +126,6 @@
or 2
)
tax_amount = flt(invoice_tax_map.get(inv.name, {}).get(tax_acc), tax_amount_precision)
- print(tax_amount)
total_tax += tax_amount
row.update({frappe.scrub(tax_acc): tax_amount})