From 31b2c64285c721f4d10748ca29410093cab79973 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana?= Date: Sun, 13 Mar 2022 12:46:31 +0100 Subject: [PATCH] Fix hyperparams column width in excel --- src/Results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Results.py b/src/Results.py index 108c058..4e7d6c3 100644 --- a/src/Results.py +++ b/src/Results.py @@ -489,7 +489,7 @@ class Excel(BaseReport): self.sheet.set_column( self.col_hyperparams, self.col_hyperparams, - self.max_hyper_width + 1, + max(self.max_hyper_width + 1, 23), ) self.sheet.write(self.row + 1, 0, message, bold) for c in range(self.row + 2):