def isInteger()

in src/guclimate/requests/validate.py [0:0]


def isInteger(_, current):
    try:
        int(current)
    except ValueError:
        raise errors.ValidationError("", reason="Please enter an integer value")

    return True