Skip to content

Commit

Permalink
update date format in experiment name
Browse files Browse the repository at this point in the history
  • Loading branch information
Karl-Svard committed Feb 6, 2024
1 parent 81f527d commit 5bf8c6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cg_lims/EPPs/udf/set/set_ont_sequencing_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

def get_experiment_name(process: Process) -> str:
""""""
return f"{date.today()}_{process.id}"
return f"{date.today().strftime('%y%m%d')}_{process.id}"


def set_experiment_name(process: Process) -> None:
Expand Down

0 comments on commit 5bf8c6c

Please sign in to comment.