From 977c9d1622b7d9f3383c21817c60c87cf8d4375e Mon Sep 17 00:00:00 2001 From: Deepesh Garg Date: Wed, 2 Feb 2022 23:28:05 +0530 Subject: [PATCH] chore: Remove unused imports --- frappe/core/doctype/data_import/data_import.py | 1 - frappe/core/doctype/data_import/test_importer.py | 1 - 2 files changed, 2 deletions(-) diff --git a/frappe/core/doctype/data_import/data_import.py b/frappe/core/doctype/data_import/data_import.py index 0c8ba072a1..5972e79b4d 100644 --- a/frappe/core/doctype/data_import/data_import.py +++ b/frappe/core/doctype/data_import/data_import.py @@ -12,7 +12,6 @@ from frappe.model.document import Document from frappe.modules.import_file import import_file_by_path from frappe.utils.background_jobs import enqueue from frappe.utils.csvutils import validate_google_sheets_url -from frappe.utils import cint class DataImport(Document): diff --git a/frappe/core/doctype/data_import/test_importer.py b/frappe/core/doctype/data_import/test_importer.py index d024f950c8..3f78594dd2 100644 --- a/frappe/core/doctype/data_import/test_importer.py +++ b/frappe/core/doctype/data_import/test_importer.py @@ -3,7 +3,6 @@ # License: MIT. See LICENSE import unittest import frappe -import json from frappe.core.doctype.data_import.importer import Importer from frappe.utils import getdate, format_duration