From dd92f805d5a27f240cd6b388885ace3827cb2fe3 Mon Sep 17 00:00:00 2001 From: pcain-usgs <pcain@usgs.gov> Date: Tue, 2 Jul 2019 13:53:56 -0600 Subject: [PATCH] Fixes issue 119 Changes the comments for the parse_string function from IAGA2002 file's comments Please enter the commit message for your changes. Lines starting --- geomagio/TimeseriesFactory.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/geomagio/TimeseriesFactory.py b/geomagio/TimeseriesFactory.py index 50adb2fd..614e270f 100644 --- a/geomagio/TimeseriesFactory.py +++ b/geomagio/TimeseriesFactory.py @@ -139,17 +139,19 @@ class TimeseriesFactory(object): return timeseries def parse_string(self, data, **kwargs): - """Parse the contents of a string in the format of an IAGA2002 file. + """Creates error message that this functions is not implemented by TimeseriesFactory. Parameters ---------- data : str string containing parsable content. + + - Returns + Raises ------- - obspy.core.Stream - parsed data. + NotImplementedError + if function is called """ raise NotImplementedError('"parse_string" not implemented') -- GitLab