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

Fix bug in Gaussian example

parent ab4a1fea
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ class SimpleGaussianLikelihood(bilby.Likelihood):
data: array_like
The data to analyse
"""
bilby.Likelihood.__init__(parameters={'mu': None, 'sigma': None})
bilby.Likelihood.__init__(self, parameters={'mu': None, 'sigma': None})
self.data = data
self.N = len(data)
......
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