Minor changes

This commit is contained in:
Loic Guegan 2022-09-11 09:18:38 +02:00
parent 75c2ce0991
commit 33fffefd1d

View file

@ -11,7 +11,8 @@ class UnitsParser:
if len(elt) == 2:
min = int(elt[0])
max = int(elt[1])
# TODO: Check min/max
if min < 0 or max > limit:
raise Exception("Outside of range limit [0-"+str(limit)+"]")
return(range(min,max))
else:
return(list(map(int, r.split(","))))