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

Merge branch 'fix-gaussian-example' into 'master'

Fix bug in Gaussian example

See merge request lscsoft/bilby!489
parents ab4a1fea afa6051d
No related branches found
No related tags found
1 merge request!489Fix bug in Gaussian example
Pipeline #61049 passed
......@@ -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