Skip to content

Commit

Permalink
Update the comment
Browse files Browse the repository at this point in the history
The actual value can also be 1969-12-31-06-00-00-PM, so remove the exact
date to avoid confusion.
  • Loading branch information
nkaretnikov committed Dec 9, 2023
1 parent 3305f76 commit 3a42dd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions argo_jupyter_scheduler/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@ def gen_cron_workflow_name(job_definition_id: str):
def gen_default_output_path(input_path: str):
# The initial filename before we can get access to the timestamp. Has the
# "0" suffix to avoid clashing with the input filename. This value will be
# pretty-printed as 1970-01-01-01-00-00-AM when the file is created.
# pretty-printed as the Unix epoch when the file is created.
return gen_output_path(input_path, 0)


def gen_default_html_path(input_path: str):
# The initial filename before we can get access to the timestamp. Has the
# "0" suffix to avoid clashing with the input filename. This value will be
# pretty-printed as 1970-01-01-01-00-00-AM when the file is created.
# pretty-printed as the Unix epoch when the file is created.
return gen_html_path(input_path, 0)


Expand Down

0 comments on commit 3a42dd0

Please sign in to comment.