fix: removed an unnecessary check which always evaluates to true

This commit is contained in:
OpenRefactory, Inc
2023-01-17 22:56:25 -08:00
committed by ruthra kumar
parent 6b31c27ed6
commit 49aed7ff69

View File

@@ -378,7 +378,6 @@ class Deferred_Revenue_and_Expense_Report(object):
ret += [{}] ret += [{}]
# add total row # add total row
if ret is not []:
if self.filters.type == "Revenue": if self.filters.type == "Revenue":
total_row = frappe._dict({"name": "Total Deferred Income"}) total_row = frappe._dict({"name": "Total Deferred Income"})
elif self.filters.type == "Expense": elif self.filters.type == "Expense":