From ac27a8ef2e417f0b56f2b72d15750a16bfad388f Mon Sep 17 00:00:00 2001 From: Sebastian Wehling-Benatelli Date: Thu, 13 Mar 2014 13:26:13 +0100 Subject: [PATCH] clean-up --- pylot/__init__.py | 1 - pylot/core/stream.py | 13 ------------- pylot/core/trace.py | 18 ------------------ 3 files changed, 32 deletions(-) delete mode 100755 pylot/core/stream.py delete mode 100755 pylot/core/trace.py diff --git a/pylot/__init__.py b/pylot/__init__.py index 1297ecab..788a394f 100755 --- a/pylot/__init__.py +++ b/pylot/__init__.py @@ -26,7 +26,6 @@ The development of PyLoT is part of the joint research project MAGS2. (http://www.gnu.org/copyleft/lesser.html) ''' -import os.path as osp from obspy.core.utcdatetime import UTCDateTime from obspy.core.util.attribdict import AttribDict #from pylot.core.trace import Stats, Trace diff --git a/pylot/core/stream.py b/pylot/core/stream.py deleted file mode 100755 index fcfc41b0..00000000 --- a/pylot/core/stream.py +++ /dev/null @@ -1,13 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Fri Nov 8 15:13:13 2013 - -@author: sebastianw -""" - -from obspy.core import Stream as Obspystream - - -class Stream(Obspystream): - pass - diff --git a/pylot/core/trace.py b/pylot/core/trace.py deleted file mode 100755 index 8f961d30..00000000 --- a/pylot/core/trace.py +++ /dev/null @@ -1,18 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Fri Nov 8 15:12:43 2013 - -@author: sebastianw -""" - -from obspy.core import Trace as Obspytrace -from obspy.core.util import AttribDict - - -class Stats(AttribDict): - pass - - -class Trace(Obspytrace): - pass - \ No newline at end of file