def check_valid_time()

in scripts/update_auto_launch_config.py [0:0]


    def check_valid_time(time) -> bool:
        time = time.strip()
        
        if not ConfigurationValidator.is_hh_mm_time(time):
            return False

        hour, min = time.split(':', 1)

        if min != "00" and min != "15" and min != "30" and min != "45":
            Prompter.print_red("Minute must be an interval of 15 minutes")
            return False
        
        return True