Skip to content

Commit

Permalink
Update pytorch_lightning/loggers/base.py
Browse files Browse the repository at this point in the history
Co-authored-by: Jirka Borovec <Borda@users.noreply.github.com>
  • Loading branch information
ssakhavi and Borda committed Jun 17, 2020
1 parent 93baf9a commit 5cd682c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pytorch_lightning/loggers/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
import torch

from pytorch_lightning.utilities import rank_zero_only
from omegaconf import DictConfig
try:
from omegaconf import Container
except ImportError:
Container = None


class LightningLoggerBase(ABC):
Expand Down

0 comments on commit 5cd682c

Please sign in to comment.