From da80fcc459b9c91499351e9e7289f33071b17ebf Mon Sep 17 00:00:00 2001
From: Matthew Pitkin <matthew.pitkin@ligo.org>
Date: Wed, 24 Apr 2019 09:41:30 +0100
Subject: [PATCH] A couple of minor fixes following from lscsoft/bilby!110

---
 bilby/core/prior.py | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/bilby/core/prior.py b/bilby/core/prior.py
index 1cb426675..074439182 100644
--- a/bilby/core/prior.py
+++ b/bilby/core/prior.py
@@ -2036,6 +2036,12 @@ class FermiDirac(Prior):
         r: float
             A value giving mu/sigma. This can be used instead of specifying
             mu.
+        name: str
+            See superclass
+        latex_label: str
+            See superclass
+        unit: str
+            See superclass
 
         References
         ----------
@@ -2574,7 +2580,7 @@ class MultivariateGaussianDist(object):
         return len(self.names)
 
 
-class MultivariateNormalDist(object):
+class MultivariateNormalDist(MultivariateGaussianDist):
 
     def __init__(self, names, nmodes=1, mus=None, sigmas=None, corrcoefs=None,
                  covs=None, weights=None, bounds=None):
-- 
GitLab