Browse Source

Fix typo in analytics utils

pull/1/head
rozetko 6 years ago
parent
commit
ece1315a33
  1. 2
      analytics/utils/__init__.py

2
analytics/utils/__init__.py

@ -93,7 +93,7 @@ def findOneJump(data, x, size, height, err):
def findAllJumps(data, size, height):
possible_jump_list = []
for i in range(len(data - size):
for i in range(len(data - size)):
x = findOneJump(data, i, size, height, 0.9)
if x > 0:
possible_jump_list.append(x)

Loading…
Cancel
Save