From 3c85332661d06130645f4d50f6c13d84efda21ba Mon Sep 17 00:00:00 2001 From: Jeremy Jordan <13970565+jeremyjordan@users.noreply.github.com> Date: Thu, 5 Mar 2020 22:20:59 -0500 Subject: [PATCH] remove extra whitespace (#1060) --- pytorch_lightning/core/lightning.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytorch_lightning/core/lightning.py b/pytorch_lightning/core/lightning.py index c845cf17cc..d8d5f1d5e5 100644 --- a/pytorch_lightning/core/lightning.py +++ b/pytorch_lightning/core/lightning.py @@ -1387,7 +1387,7 @@ class LightningModule(ABC, GradInformation, ModelIO, ModelHooks): else: raise MisconfigurationException( f"Checkpoint contains hyperparameters but {cls.__name__}'s __init__ " - f"is missing the argument 'hparams'. Are you loading the correct checkpoint?" + f"is missing the argument 'hparams'. Are you loading the correct checkpoint?" ) # load the state_dict on the model automatically