Skip to content

Commit 5d6937a

Browse files
committed
add none return annotation
1 parent 52b81d9 commit 5d6937a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pytorch_lightning/loggers/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -439,10 +439,10 @@ def __init__(self):
439439
def experiment(self) -> DummyExperiment:
440440
return self._experiment
441441

442-
def log_metrics(self, *args, **kwargs):
442+
def log_metrics(self, *args, **kwargs) -> None:
443443
pass
444444

445-
def log_hyperparams(self, *args, **kwargs):
445+
def log_hyperparams(self, *args, **kwargs) -> None:
446446
pass
447447

448448
@property

0 commit comments

Comments
 (0)