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 50567bf commit 800a32eCopy full SHA for 800a32e
async_task_scheduler/__init__.py
@@ -176,11 +176,11 @@ def weekly(self, func: DecoratedAsync) -> DecoratedAsync:
176
CronTask(
177
func,
178
schedule=(
179
- lambda x: x == 0,
180
lambda x: x == 0,
181
182
lambda x: True,
183
+ lambda x: x == 0,
184
),
185
)
186
@@ -193,8 +193,8 @@ def monthly(self, func: DecoratedAsync) -> DecoratedAsync:
193
194
195
196
197
+ lambda x: x == 1,
+ lambda x: True,
198
199
200
0 commit comments