Commit c0e3b273 authored by Chris Shallue's avatar Chris Shallue Committed by Christopher Shallue
Browse files

Relocate a stray parenthesis.

PiperOrigin-RevId: 193054491
parent ed901b73
......@@ -152,7 +152,7 @@ def choose_kepler_spline(all_time,
# Don't fit a spline on less than 4 points.
if len(time) < 4:
spline.append(flux)
spline_mask.append(np.ones_like(flux), dtype=np.bool)
spline_mask.append(np.ones_like(flux, dtype=np.bool))
continue
# Fit B-spline to this light-curve segment.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment