Skip to content

Commit

Permalink
Fix mypy ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
maresb committed Aug 25, 2024
1 parent bf7ba08 commit 5362113
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pymc/gp/hsgp_approx.py
Original file line number Diff line number Diff line change
Expand Up @@ -683,12 +683,12 @@ def prior_linearized(self, X: TensorLike):
psd = self.scale * self.cov_func.power_spectral_density_approx(J)
return (phi_cos, phi_sin), psd

def prior(
def prior( # type: ignore
self,
name: str,
X: TensorLike,
dims: str | None = None,
): # type: ignore
):
R"""
Returns the (approximate) GP prior distribution evaluated over the input locations `X`.
For usage examples, refer to `pm.gp.Latent`.
Expand Down

0 comments on commit 5362113

Please sign in to comment.