Skip to content

Commit

Permalink
Days not minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-moore-97 committed Feb 2, 2024
1 parent 7c36996 commit aabb21c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qualtrix/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,14 +110,14 @@ async def create_reminder_distributions(distribution_id: str):
settings.LIBRARY_ID,
settings.REMINDER_MESSAGE_ID,
distribution_id,
(datetime.utcnow() + timedelta(minutes=1)),
(datetime.utcnow() + timedelta(days=1)),
)

distribution = client.create_reminder_distribution(
settings.LIBRARY_ID,
settings.REMINDER_MESSAGE_ID,
distribution_id,
(datetime.utcnow() + timedelta(minutes=3)),
(datetime.utcnow() + timedelta(days=3)),
)


Expand Down

0 comments on commit aabb21c

Please sign in to comment.