Skip to content

Commit

Permalink
Merge pull request #44 from pymc-devs/master
Browse files Browse the repository at this point in the history
remove un-necessary call to super().__init__ (pymc-devs#3826)
  • Loading branch information
sthagen committed Mar 9, 2020
2 parents 850800f + b49340b commit 76003bb
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions pymc3/gp/gp.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,9 +386,6 @@ class Marginal(Base):
fcond = gp.conditional("fcond", Xnew=Xnew)
"""

def __init__(self, mean_func=Zero(), cov_func=Constant(0.0)):
super().__init__(mean_func, cov_func)

def _build_marginal_likelihood(self, X, noise):
mu = self.mean_func(X)
Kxx = self.cov_func(X)
Expand Down

0 comments on commit 76003bb

Please sign in to comment.