motion-planners icon indicating copy to clipboard operation
motion-planners copied to clipboard

get_nth() in Lattice.py is not right?

Open roshandhakal opened this issue 1 year ago • 0 comments

Currently, it has def get_nth(generator, n=0): return next(islice(generator, n), None)

When it should be?: def get_nth(generator, n=0): return next(islice(generator, n, None))

roshandhakal avatar Mar 09 '23 13:03 roshandhakal