Skip to content

Commit

Permalink
Removed extra __init__() argument
Browse files Browse the repository at this point in the history
  • Loading branch information
joakim-hove authored and markusdregi committed Mar 14, 2019
1 parent f3b68f2 commit fe72d55
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class IteratedEnsembleSmoother(BaseRunModel):

def __init__(self):
super(IteratedEnsembleSmoother, self).__init__("Iterated Ensemble Smoother", getQueueConfig() , phase_count=2)
super(IteratedEnsembleSmoother, self).__init__(getQueueConfig() , phase_count=2)
self.support_restart = False

def setAnalysisModule(self, module_name):
Expand Down

0 comments on commit fe72d55

Please sign in to comment.