MCPcopy Create free account
hub / github.com/FreeformRobotics/OTS / process_range

Function process_range

utils.py:163–167  ·  view source on GitHub ↗
(xpu, inp)

Source from the content-addressed store, hash-verified

161
162
163def process_range(xpu, inp):
164 start, end = map(int, inp)
165 if start > end:
166 end, start = start, end
167 return map(lambda x: '{}{}'.format(xpu, x), range(start, end+1))
168
169
170REGEX = [

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected