Skip to content

Commit

Permalink
fix the numpy ndarray bug
Browse files Browse the repository at this point in the history
  • Loading branch information
yi-fan-wang committed Jan 16, 2024
1 parent fb8991d commit 7e4317a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/all_sky_search/pycbc_coinc_findtrigs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ if args.randomize_template_order:
shuffle(template_ids)
template_ids = template_ids[tmin:tmax]
else:
template_ids = numpy.array([range(tmin, tmax)])
template_ids = numpy.arrange(tmin, tmax)

original_bank_len = len(template_ids)

Expand Down

0 comments on commit 7e4317a

Please sign in to comment.