Skip to content

Commit d6dc40c

Browse files
committed
Update data_3d.py
1 parent 8ec677f commit d6dc40c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mtpy/modeling/simpeg/data_3d.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,4 +260,6 @@ def data_object(self):
260260
""" create a data object"""
261261
observations, errors = self.get_observations_and_erros()
262262
survey = self.get_survey()
263-
return data.Data(survey, dobs=observations, standard_deviation=errors.flatten())
263+
return data.Data(survey,
264+
dobs=observations.flatten(),
265+
standard_deviation=errors.flatten())

0 commit comments

Comments
 (0)