Remove ununsed variables from export_csv_file

This commit is contained in:
raphael 2021-09-17 11:57:36 -04:00 committed by GitHub
parent 5fc993231a
commit 124e97f3b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -435,8 +435,7 @@ class HyperoptTools():
return table
@staticmethod
def export_csv_file(config: dict, results: list, total_epochs: int, highlight_best: bool,
csv_file: str) -> None:
def export_csv_file(config: dict, results: list, csv_file: str) -> None:
"""
Log result to csv-file
"""