Session.__init__ accepts a name: str = "benchmark" parameter and assigns it to self.name, but the attribute is never accessed anywhere inside the class and is not propagated to Report or any other component.
Users who set a session name to identify a run have no way to retrieve it from the produced report, making the parameter misleading. This is a recurrence of the same problem that existed on the former Benchmark class.
Session.__init__accepts aname: str = "benchmark"parameter and assigns it toself.name, but the attribute is never accessed anywhere inside the class and is not propagated toReportor any other component.Users who set a session name to identify a run have no way to retrieve it from the produced report, making the parameter misleading. This is a recurrence of the same problem that existed on the former
Benchmarkclass.