commit | 67440c38aef1f94432c0ec97f9bef065363d3a1b | [log] [tgz] |
---|---|---|
author | ruthra kumar <ruthra@erpnext.com> | Tue Oct 03 17:38:43 2023 +0530 |
committer | ruthra kumar <ruthra@erpnext.com> | Tue Oct 03 17:38:43 2023 +0530 |
tree | 514caf937568cf81468223e9d61632580c1d915e | |
parent | 1dab195560021347c2edfae4ffcedc93be647868 [diff] |
refactor: use `isinstance` over `type`
diff --git a/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py b/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py index f898415..60274cd 100644 --- a/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py +++ b/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py
@@ -99,7 +99,7 @@ # Add all amount columns for k in list(self.party_total[d.party]): - if type(self.party_total[d.party][k]) == float: + if isinstance(self.party_total[d.party][k], float): self.party_total[d.party][k] += d.get(k) or 0.0 # set territory, customer_group, sales person etc