We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 170609a commit c85fc7bCopy full SHA for c85fc7b
src/scheduling/schedule_config.py
@@ -10,7 +10,7 @@
10
def _read_datetime(incoming_schedule_config, key):
11
datetime_value = model_helper.read_datetime_from_config(key, incoming_schedule_config)
12
if datetime_value is None:
13
- raise InvalidScheduleException('%1 is required', key)
+ raise InvalidScheduleException(f'{key} is required')
14
return datetime_value
15
16
def _read_repeat_unit(incoming_schedule_config):
0 commit comments