Skip to content

Commit 9ca7164

Browse files
committed
Bug fix for smear-pdf
1 parent f8ee98a commit 9ca7164

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/diffpy/morph/morph_helpers/transformrdftopdf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def morph(self, x_morph, y_morph, x_target, y_target):
5757
self.y_morph_out = (
5858
self.y_morph_in / self.x_morph_in + morph_baseline
5959
)
60-
self.y_morph_out[self.x_target_in == 0] = 0
60+
self.y_morph_out[self.x_morph_in == 0] = 0
6161
return self.xyallout
6262

6363

0 commit comments

Comments
 (0)