fix: Remove debug param
diff --git a/erpnext/selling/report/territory_wise_sales/territory_wise_sales.py b/erpnext/selling/report/territory_wise_sales/territory_wise_sales.py
index 656ff33..f2db478 100644
--- a/erpnext/selling/report/territory_wise_sales/territory_wise_sales.py
+++ b/erpnext/selling/report/territory_wise_sales/territory_wise_sales.py
@@ -110,7 +110,7 @@
 	return frappe.db.sql("""
 		SELECT name, territory, opportunity_amount
 		FROM `tabOpportunity` {0}
-	""".format(conditions), filters, as_dict=1, debug=1) #nosec
+	""".format(conditions), filters, as_dict=1) #nosec
 
 def get_quotations(opportunities):
 	if not opportunities: