From e5c7404bb6b5a1ad5f69ee7738b462e849cd2bb7 Mon Sep 17 00:00:00 2001 From: Sebastian Wehling-Benatelli Date: Wed, 17 Jul 2024 14:07:05 +0200 Subject: [PATCH] refactor: remove unnecessary additional declaration --- pylot/core/util/structure.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pylot/core/util/structure.py b/pylot/core/util/structure.py index dd6cffd9..571f5dab 100644 --- a/pylot/core/util/structure.py +++ b/pylot/core/util/structure.py @@ -6,7 +6,7 @@ Created on Wed Jan 26 17:47:25 2015 @author: sebastianw """ -from pylot.core.io.data import SeiscompDataStructure, PilotDataStructure, ObspyDMTdataStructure +from pylot.core.io.data import SeiscompDataStructure, PilotDataStructure DATASTRUCTURE = {'PILOT': PilotDataStructure, 'SeisComP': SeiscompDataStructure, - 'obspyDMT': ObspyDMTdataStructure, None: PilotDataStructure} + 'obspyDMT': PilotDataStructure, None: PilotDataStructure}