Skip to content

Commit 97cfc58

Browse files
committed
getData --> get_data, and getMetaData --> get_metadata in Profile
1 parent 937e11f commit 97cfc58

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/diffpy/srfit/fitbase/profile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ def load_parsed_data(self, parser):
159159
160160
This sets the xobs, yobs, dyobs arrays as well as the metadata.
161161
"""
162-
x, y, junk, dy = parser.getData()
163-
self.meta = dict(parser.getMetaData())
162+
x, y, junk, dy = parser.get_data()
163+
self.meta = dict(parser.get_metadata())
164164
self.set_observed_profile(x, y, dy)
165165
return
166166

0 commit comments

Comments
 (0)