Skip to content

Commit

Permalink
Fixes a Ruff error on jaxtyping annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgondu committed Jul 1, 2024
1 parent c67083f commit e0fc9d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpjax/decision_making/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def build_function_evaluator(
return lambda x: {tag: Dataset(x, f(x)) for tag, f in functions.items()}


def gaussian_cdf(x: Float[Array, "N"]) -> Float[Array, "N"]:
def gaussian_cdf(x: Float[Array, " N"]) -> Float[Array, " N"]:
"""
Compute the cumulative distribution function of the standard normal distribution at
the points `x`.
Expand Down

0 comments on commit e0fc9d2

Please sign in to comment.