Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hexrdgui/calibration/wppf_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def rerender_wppf(self) -> None:

# Compute TDS lineout, if applicable
tds_lineout = []
if obj.tds_model is not None:
if isinstance(obj, Rietveld) and obj.tds_model is not None:
x = obj.tth_list
y = np.zeros(x.shape)
for p in obj.tds_model.TDSmodels:
Expand Down
Loading