diff --git a/benchmarks/persistence/persistence.py b/benchmarks/persistence/persistence.py index 87bc81e3d..9a2b83ef2 100644 --- a/benchmarks/persistence/persistence.py +++ b/benchmarks/persistence/persistence.py @@ -50,16 +50,16 @@ class PathConstructor: """The name of the benchmark for which the path should be constructed.""" branch: str = field(validator=instance_of(str)) - """The branch currently checked out at benchmark execution time.""" + """The branch checked out at benchmark execution time.""" latest_baybe_tag: str = field(validator=instance_of(str)) - """The latest BayBE version tag at benchmark execution time.""" + """The latest BayBE version tag existing at benchmark execution time.""" execution_date_time: datetime = field(validator=instance_of(datetime)) """The date and time when the benchmark was executed.""" commit_hash: str = field(validator=instance_of(str)) - """The hash of the commit at benchmark execution time.""" + """The hash of the commit checked out at benchmark execution time.""" def _sanitize_string(self, string: str) -> str: """Replace disallowed characters for filesystems in the given string."""