Skip to content

Commit

Permalink
Merge pull request obspy#2867 from obspy/fix_sc3ml_level
Browse files Browse the repository at this point in the history
fix changes in read_inventory that triggers error for SC3ML & Arclink (obspy#2759)
  • Loading branch information
ThomasLecocq authored Aug 13, 2021
2 parents 182c283 + 21c26d9 commit ae1ed9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion obspy/io/arclink/inventory.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def _ns(tagname):
return "{%s}%s" % (SCHEMA_NAMESPACE, tagname)


def _read_inventory_xml(path_or_file_object):
def _read_inventory_xml(path_or_file_object, **kwargs):
"""
Function for reading an Arclink inventory file.
Expand Down
2 changes: 1 addition & 1 deletion obspy/io/seiscomp/inventory.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def _parse_list_of_complex_string(complex_string):
return numbers


def _read_sc3ml(path_or_file_object):
def _read_sc3ml(path_or_file_object, **kwargs):
"""
Function for reading a stationXML file.
Expand Down

0 comments on commit ae1ed9b

Please sign in to comment.