Skip to content
Snippets Groups Projects
Commit 92479e07 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Fix bug in HPlikelihood init

parent 3d8ee91a
No related branches found
No related tags found
No related merge requests found
......@@ -256,7 +256,7 @@ class HyperparameterLikelihood(Likelihood):
"""
def __init__(self, samples, hyper_prior, run_prior):
Likelihood.__init__(parameters=hyper_prior.__dict__)
Likelihood.__init__(self, parameters=hyper_prior.__dict__)
self.samples = samples
self.hyper_prior = hyper_prior
self.run_prior = run_prior
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment