Skip to content

Commit 314c567

Browse files
authored
Merge pull request #829 from HEXRD/remove-debug-statement
Remove debug statement
2 parents 12c7c54 + 4a097fe commit 314c567

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

hexrd/wppf/amorphous.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,6 @@ def tth_list(self):
161161
@tth_list.setter
162162
def tth_list(self, val):
163163
if isinstance(val, np.ma.MaskedArray):
164-
print('here')
165164
self._tth_list = val.filled()
166165
elif isinstance(val, np.ndarray):
167166
self._tth_list = val
@@ -180,9 +179,9 @@ def model_data(self, data):
180179
if self.model_type.lower() == "experimental":
181180
if data is not None:
182181
if isinstance(data, dict):
183-
'''the liquid diffraction data might be
182+
'''the liquid diffraction data might be
184183
on a different grid size and shape than the
185-
lineout. we will deal with that here via
184+
lineout. we will deal with that here via
186185
interpolation
187186
'''
188187
data_interp = dict.fromkeys(data.keys())

0 commit comments

Comments
 (0)