Skip to content

Commit 01c4747

Browse files
committed
BUG: 10633 - some last errors removed
1 parent 03f01c7 commit 01c4747

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

pandas/core/common.py

-14
Original file line numberDiff line numberDiff line change
@@ -1718,23 +1718,9 @@ def _interpolate_scipy_wrapper(x, y, new_x, method, fill_value=None,
17181718
bounds_error=bounds_error)
17191719
new_y = terp(new_x)
17201720
elif method == 'spline':
1721-
<<<<<<< HEAD
1722-
1723-
# GH #10633: first attempt
1724-
<<<<<<< HEAD
1725-
1726-
if not order:
1727-
raise ValueError("order needs to be specified and greater than 0")
1728-
1729-
=======
1730-
if order is None:
1731-
raise ValueError("order needs to be specified, use 1, 2, or 3")
1732-
>>>>>>> 1561f91... small changes
1733-
=======
17341721
# GH #10633
17351722
if not order:
17361723
raise ValueError("order needs to be specified and greater than 0")
1737-
>>>>>>> 5a5407e... updating examples and the bug fix
17381724
terp = interpolate.UnivariateSpline(x, y, k=order, **kwargs)
17391725
new_y = terp(new_x)
17401726
else:

0 commit comments

Comments
 (0)