Binning with Tuple produces unexpected behavior
Created by: zain-sohail
Describe the bug The documentation states using a tuple with 3 parameters should be the start, stop and step_size. But currently, it is assuming it to be the num_steps.
To Reproduce Steps to reproduce the behavior:
axes = ['dldPosX', 'dldPosY']
bins = [(430,900,1), (430,900,1)]
res = sp.compute(bins=bins, axes=axes)
Expected behavior The behavior should be tuple(start, stop, step_size). Test currently tests tuple(start, stop, num_steps).