Skip to content

Commit a8e1fe6

Browse files
remove unnecessary comments :-)
1 parent 1e694fc commit a8e1fe6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pytorch_lightning/callbacks/progress.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def disable(self):
7878
self.enable = False
7979
8080
def on_train_batch_end(self, trainer, pl_module, outputs, batch, batch_idx, dataloader_idx):
81-
super().on_train_batch_end(trainer, pl_module, outputs, batch, batch_idx, dataloader_idx) # important :-)
81+
super().on_train_batch_end(trainer, pl_module, outputs, batch, batch_idx, dataloader_idx) # important
8282
percent = (self.train_batch_idx / self.total_train_batches) * 100
8383
sys.stdout.flush()
8484
sys.stdout.write(f'{percent:.01f} percent complete \r')

0 commit comments

Comments
 (0)