Skip to content

Commit

Permalink
Included start and end text timestamp. Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Shettland committed Nov 14, 2024
1 parent 3eb289e commit 1fd64c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dashboard/cron.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def update_graphic_json_data():

# Start updating all graphic jsons
print("Starting graphic jsons update...")
print("Start timestamp: ", datetime.today().strftime('%Y-%m-%d %H:%M:%S'))
print("Start timestamp: ", datetime.today().strftime("%Y-%m-%d %H:%M:%S"))
print("Running pre_proc_calculation_date()")
dashboard.utils.generic_process_data.pre_proc_calculation_date()
print("Running pre_proc_variant_graphic()")
Expand Down Expand Up @@ -84,4 +84,4 @@ def update_graphic_json_data():
chromosome=chromosome
)
print("Graphic jsons update finished")
print("End timestamp: ",datetime.today().strftime('%Y-%m-%d %H:%M:%S'))
print("End timestamp: ", datetime.today().strftime("%Y-%m-%d %H:%M:%S"))

0 comments on commit 1fd64c6

Please sign in to comment.