Skip to content

Commit

Permalink
fix: repeats should be nullable (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjbell authored Jun 27, 2024
1 parent 2c54be2 commit fd12344
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions knockapi/resources/workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ def create_schedules(
self,
key,
recipients,
repeats,
repeats=None,
scheduled_at=None,
data={},
scheduled_at=datetime.datetime.now(),
actor=None,
tenant=None):
"""
Expand Down Expand Up @@ -142,7 +142,7 @@ def update_schedules(
def list_schedules(
self,
key,
options = {}):
options={}):
"""
List workflow schedules
Expand Down

0 comments on commit fd12344

Please sign in to comment.