From 6f798df191b47881cce150c9739d07066c69330e Mon Sep 17 00:00:00 2001 From: Terrtia Date: Mon, 22 May 2023 13:39:52 +0200 Subject: [PATCH] fix: [flask] remove old import --- var/www/blueprints/import_export.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/var/www/blueprints/import_export.py b/var/www/blueprints/import_export.py index 8960bd93..314c5e74 100644 --- a/var/www/blueprints/import_export.py +++ b/var/www/blueprints/import_export.py @@ -27,11 +27,6 @@ from lib.exceptions import MISPConnectionError from lib.objects import ail_objects from lib.Investigations import Investigation -# TODO REMOVE ME -from export import MispImport # TODO REMOVE ME - -# TODO REMOVE ME - # ============ BLUEPRINT ============ import_export = Blueprint('import_export', __name__, template_folder=os.path.join(os.environ['AIL_FLASK'], 'templates/import_export'))