Skip to content

Commit c62e7b9

Browse files
committed
remove comments in save html method
1 parent 7368fdc commit c62e7b9

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/guidellm/benchmark/output.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -232,16 +232,11 @@ def save_csv(self, path: Union[str, Path]) -> Path:
232232
def save_html(self, path: str | Path) -> Path:
233233
"""
234234
Download html, inject report data and save to a file.
235-
If the file is a directory, it will create the report in a file named
236-
benchmarks.html under the directory.
237235
238236
:param path: The path to create the report at.
239237
:return: The path to the report.
240238
"""
241239

242-
# json_data = json.dumps(data, indent=2)
243-
# thing = f'window.{variable_name} = {json_data};'
244-
245240
data_builder = UIDataBuilder(self.benchmarks)
246241
data = data_builder.to_dict()
247242
camel_data = humps.camelize(data)

0 commit comments

Comments
 (0)