From aad29ad57269b236479907c064b2cfae0eec8be3 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 11 Apr 2022 15:33:22 +0530 Subject: [PATCH] fix: removed unused imports --- .../income_tax_computation/test_income_tax_computation.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/erpnext/payroll/report/income_tax_computation/test_income_tax_computation.py b/erpnext/payroll/report/income_tax_computation/test_income_tax_computation.py index 8d0df92814..fd829813de 100644 --- a/erpnext/payroll/report/income_tax_computation/test_income_tax_computation.py +++ b/erpnext/payroll/report/income_tax_computation/test_income_tax_computation.py @@ -1,10 +1,9 @@ import unittest import frappe -from frappe.utils import add_days, getdate +from frappe.utils import getdate from erpnext.hr.doctype.employee.test_employee import make_employee -from erpnext.hr.report.employee_exits.test_employee_exits import create_company from erpnext.payroll.doctype.employee_tax_exemption_declaration.test_employee_tax_exemption_declaration import ( create_payroll_period, )