Skip to content
Snippets Groups Projects
Commit 17f99a06 authored by Moritz Huebner's avatar Moritz Huebner
Browse files

Added call to superclass

parent 5f4f995b
No related branches found
No related tags found
1 merge request!901Resolve "Multidimensional Gaussian Example Failing"
Pipeline #172300 passed
......@@ -33,6 +33,7 @@ class MultidimGaussianLikelihood(bilby.Likelihood):
"""
def __init__(self, data, dim):
super().__init__()
self.dim = dim
self.data = np.array(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