Skip to content
Snippets Groups Projects
Unverified Commit 0b3a4db8 authored by Erin (Josh) Rigler's avatar Erin (Josh) Rigler Committed by GitHub
Browse files

Merge pull request #250 from pcain-usgs/issue-119

Fixes issue 119
parents ae5f2c5f e0c4914e
No related branches found
No related tags found
No related merge requests found
...@@ -139,17 +139,17 @@ class TimeseriesFactory(object): ...@@ -139,17 +139,17 @@ class TimeseriesFactory(object):
return timeseries return timeseries
def parse_string(self, data, **kwargs): 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 Parameters
---------- ----------
data : str data : str
string containing parsable content. string containing parsable content.
Raises
Returns
------- -------
obspy.core.Stream NotImplementedError
parsed data. if function is called
""" """
raise NotImplementedError('"parse_string" not implemented') raise NotImplementedError('"parse_string" not implemented')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment