Skip to content

Commit

Permalink
Automated commit -> added return statement to parser in jatosapi
Browse files Browse the repository at this point in the history
  • Loading branch information
miloswrath committed Sep 27, 2024
1 parent 2515953 commit 845cea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jatosAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def get_met(tease):

# Get the current timestamp
current_time = datetime.now().timestamp() * 1000 # Convert to milliseconds
one_day_ago = current_time - 23*(24 * 60 * 60 * 1000) # 24 hours ago in milliseconds
one_day_ago = current_time - (24 * 60 * 60 * 1000) # 24 hours ago in milliseconds

# Initialize an empty list to store study result IDs
study_result_ids = []
Expand Down

0 comments on commit 845cea0

Please sign in to comment.