Skip to content

Commit

Permalink
Get rid of no_suffix_time option
Browse files Browse the repository at this point in the history
  • Loading branch information
thalassemia authored Jul 20, 2024
1 parent bc04111 commit 9184796
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions ecoli/experiments/ecoli_master_sim.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,13 +217,6 @@ def __init__(
"in the configuration file."
),
)
self.parser.add_argument(
"--no_suffix_time",
action="store_true",
default=False,
help="Do not append current time as '_day-month-year_hour-minute-second'"
" to experiment ID.",
)
self.parser.add_argument(
"--emitter",
action="store",
Expand Down Expand Up @@ -829,7 +822,7 @@ def run(self):
# with suffix_time = True.
if not self.experiment_id_base:
self.experiment_id_base = self.experiment_id
if self.suffix_time and not self.no_suffix_time:
if self.suffix_time:
self.experiment_id = datetime.now().strftime(
f"{self.experiment_id_base}_%d-%m-%Y_%H-%M-%S"
)
Expand Down

0 comments on commit 9184796

Please sign in to comment.