##// END OF EJS Templates
Fix float slice (deprecationwarning)
Juan C. Espinoza -
r903:10adebce36d7
parent child
Show More
@@ -2032,7 +2032,7 class SMDetection(Operation):
2032 2032 timeLag = 45*10**-3
2033 2033 else:
2034 2034 timeLag = 15*10**-3
2035 lag = numpy.ceil(timeLag/timeInterval)
2035 lag = int(numpy.ceil(timeLag/timeInterval))
2036 2036
2037 2037 listMeteors1 = []
2038 2038
General Comments 0
You need to be logged in to leave comments. Login now