Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.

Commit a919fd7

Browse files
committed
Automated commit -> added return statement to parser in jatosapi
1 parent 7057168 commit a919fd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jatosAPI.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def get_met(tease):
5151

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

5656
# Initialize an empty list to store study result IDs
5757
study_result_ids = []

0 commit comments

Comments
 (0)