Skip to content

Commit e929f12

Browse files
committed
feat: update function name
Since we're only listing exposures here, we update the function name to reflect this.
1 parent 4a300f5 commit e929f12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyneuroml/pynml.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ def list_exposures(nml_doc_fn, substring=None):
396396
return get_standalone_lems_model(nml_doc_fn).list_exposures(substring)
397397

398398

399-
def list_recording_paths(nml_doc_fn, substring):
399+
def list_recording_paths_for_exposures(nml_doc_fn, substring):
400400
# type: (str, str) -> typing.List[str]
401401
"""List the recording path strings for exposures.
402402
@@ -413,7 +413,7 @@ def list_recording_paths(nml_doc_fn, substring):
413413
:returns: list of recording paths
414414
415415
"""
416-
return get_standalone_lems_model(nml_doc_fn).list_recording_paths(substring)
416+
return get_standalone_lems_model(nml_doc_fn).list_recording_paths_for_exposures(substring)
417417

418418

419419
def get_standalone_lems_model(nml_doc_fn):

0 commit comments

Comments
 (0)