Array diff lengths must be int

big_data_lines
Tyler Goodlet 2022-03-11 16:49:58 -05:00
parent 09d95157dc
commit e7481b1634
1 changed files with 2 additions and 2 deletions

View File

@ -191,8 +191,8 @@ class FastAppendCurve(pg.PlotCurveItem):
# compute the length diffs between the first/last index entry in
# the input data and the last indexes we have on record from the
# last time we updated the curve index.
prepend_length = istart - x[0]
append_length = x[-1] - istop
prepend_length = int(istart - x[0])
append_length = int(x[-1] - istop)
# step mode: draw flat top discrete "step"
# over the index space for each datum.