Skip to content

Commit

Permalink
Merge pull request #1727 from quantopian/resample-whitespace-cleanup
Browse files Browse the repository at this point in the history
STY: Cleanup trailing whitespace in resample module.
  • Loading branch information
ehebert authored Mar 28, 2017
2 parents 6cf81a3 + 3249d84 commit f717e77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zipline/data/_resample.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ cpdef void _minute_to_session_high(intp_t[:] close_locs,
val = nan
out[i] = val
loc = close_loc + 1


@boundscheck(False)
@wraparound(False)
Expand Down Expand Up @@ -105,4 +105,4 @@ cpdef void _minute_to_session_volume(intp_t[:] close_locs,
val += data[loc]
loc += 1
out[i] = val
loc = close_loc + 1
loc = close_loc + 1

0 comments on commit f717e77

Please sign in to comment.