(incoming_schedule_config)
| 41 | |
| 42 | |
| 43 | def _read_end_args(incoming_schedule_config): |
| 44 | end_option = incoming_schedule_config.get('end_option') |
| 45 | if end_option == 'end_datetime': |
| 46 | end_arg = _read_datetime(incoming_schedule_config, 'end_arg') |
| 47 | return end_option,end_arg |
| 48 | elif end_option == 'max_executions': |
| 49 | end_arg = _read_end_arg_int(incoming_schedule_config) |
| 50 | return end_option,end_arg |
| 51 | else: |
| 52 | return end_option,None |
| 53 | |
| 54 | |
| 55 | def read_repeatable_flag(incoming_schedule_config): |
no test coverage detected