Skip to content

Commit 5ef3abb

Browse files
committed
fix pytest
1 parent ae636c5 commit 5ef3abb

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

waveform_editor/tendencies/smooth.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,7 @@ def _update_values(self):
114114
d_end = self.next_tendency.start_derivative
115115

116116
self.spline = CubicSpline(
117-
[self.start, self.end],
118-
[from_, to],
119-
bc_type=((1, d_start), (1, d_end)),
120-
extrapolate=False,
117+
[self.start, self.end], [from_, to], bc_type=((1, d_start), (1, d_end))
121118
)
122119

123120
values_changed = (

0 commit comments

Comments
 (0)