def _is_positive_integer()

in launcher/config_validator/type_validator.py [0:0]


def _is_positive_integer(argument) -> bool:
    try:
        val = int(argument)
        if val < 1:
            return False
    except ValueError:
        return False
    return True