Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ahnitz committed Sep 4, 2024
1 parent 2871d81 commit 82ee2b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycbc/events/eventmgr.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def findchirp_cluster_over_window(times, values, window_length):

indices = numpy.zeros(len(times), dtype=numpy.int32)
tlen = len(times)
absvalues = numpy.asarray(abs(values), copy=False)
absvalues = numpy.asarray(abs(values))
times = numpy.asarray(times, dtype=numpy.int32)
k = findchirp_cluster_over_window_cython(times, absvalues, window_length,
indices, tlen)
Expand Down

0 comments on commit 82ee2b6

Please sign in to comment.