fix: Sider issues
diff --git a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py
index 574a353..c3cb159 100644
--- a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py
+++ b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py
@@ -868,8 +868,8 @@
 						"account": tax.account_head,
 						"against": self.supplier,
 						dr_or_cr: base_amount,
-						dr_or_cr + "_in_account_currency": base_amount \
-							if account_currency==self.company_currency \
+						dr_or_cr + "_in_account_currency": base_amount
+							if account_currency==self.company_currency
 							else amount,
 						"cost_center": tax.cost_center
 					}, account_currency, item=tax)
diff --git a/erpnext/accounts/doctype/sales_invoice/sales_invoice.py b/erpnext/accounts/doctype/sales_invoice/sales_invoice.py
index 0db426a..3b8cba2 100644
--- a/erpnext/accounts/doctype/sales_invoice/sales_invoice.py
+++ b/erpnext/accounts/doctype/sales_invoice/sales_invoice.py
@@ -1057,6 +1057,7 @@
 				if orginal_schedule_date == posting_date_of_original_invoice:
 					return True
 		return False
+		
 	@property
 	def enable_discount_accounting(self):
 		if not hasattr(self, "_enable_discount_accounting"):