Remove unnecessary parameters to super() in documentation and source code (#1240)

Co-authored-by: Jirka Borovec <Borda@users.noreply.github.com>
This commit is contained in:
Tyler Yep
2020-03-27 12:36:50 +00:00
committed by GitHub
co-authored by Jirka Borovec
parent 6a0b171be4
commit 6772e0c197
12 changed files with 101 additions and 102 deletions
@@ -45,7 +45,7 @@ class LightningTemplateModel(LightningModule):
:param hparams:
"""
# init superclass
super(LightningTemplateModel, self).__init__()
super().__init__()
self.hparams = hparams
self.batch_size = hparams.batch_size