From d06d5e68b6c2e2fbd254fd01e701f2ff0469eea6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20W=C3=A4lchli?= Date: Sat, 2 May 2020 15:08:21 +0200 Subject: [PATCH] Fix typo in progress bar docs (#1680) * fix typo * Typo * typo Borda Co-authored-by: Jirka Borovec --- pytorch_lightning/callbacks/progress.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pytorch_lightning/callbacks/progress.py b/pytorch_lightning/callbacks/progress.py index a397c0d2..a770c6c9 100644 --- a/pytorch_lightning/callbacks/progress.py +++ b/pytorch_lightning/callbacks/progress.py @@ -24,10 +24,10 @@ class ProgressBarBase(Callback): def __init__(self): super().__init__() # don't forget this :) - self.enabled = True + self.enable = True def disable(self): - self.enableenabled = False + self.enable = False def on_batch_end(self, trainer, pl_module): super().on_batch_end(trainer, pl_module) # don't forget this :)