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 904fa9e commit cf056f8Copy full SHA for cf056f8
src/aws_cron_expression_validator/validator.py
@@ -136,7 +136,8 @@ def month_regex(cls):
136
@classmethod
137
def day_of_week_regex(cls):
138
range_list = cls.list_range_regex(cls.day_of_week_values)
139
- return rf"^({range_list}|\*|\?|{cls.day_of_week_values}L|L|L-[1-7]|{cls.day_of_week_hash})$" # values , - * ? L #
+ return rf"^({range_list}|\*|\?|{cls.day_of_week_values}L|L|L-[1-7]|{cls.day_of_week_hash})$"
140
+ # values , - * ? L #
141
142
143
def year_regex(cls):
0 commit comments