in src/guclimate/requests/validate.py [0:0]
def isCommaSeparatedIntegers(_, current):
components = current.split(",")
numbers = [c.strip() for c in components]
for number in numbers:
try:
int(number)
except ValueError:
raise errors.ValidationError(
"Comma-separated should only contain integer values"
)
return True