Skip to content

Commit

Permalink
forgot the colon
Browse files Browse the repository at this point in the history
  • Loading branch information
ziofil committed Sep 3, 2021
1 parent 03c12ac commit 3bc0dca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions thewalrus/_hermite_multidimensional.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def hermite_multidimensional_numba(R, cutoff, y, C=1, dtype=None):
return _hermite_multidimensional_numba(R, y, array)

@jit(nopython=True)
def _hermite_multidimensional_numba(R, y, array): #pragma no cover
def _hermite_multidimensional_numba(R, y, array): #pragma: no cover
r"""Numba-compiled function to fill an array with the Hermite polynomials. It expects an array
initialized with zeros everywhere except at index (0,...,0) (i.e. the seed value).
Expand Down Expand Up @@ -265,7 +265,7 @@ def grad_hermite_multidimensional_numba(array, R, y, C=1, dtype=None):
return dG_dC, dG_dR, dG_dy

@jit(nopython=True)
def _grad_hermite_multidimensional_numba(R, y, array, dG_dR, dG_dy): #pragma no cover
def _grad_hermite_multidimensional_numba(R, y, array, dG_dR, dG_dy): #pragma: no cover
r"""
Numba-compiled function to fill two arrays (dG_dR, dG_dy) with the gradients of the renormalized multidimensional Hermite polynomials
with respect to its parameters :math:`R` and :math:`y`. It needs the `array` of the multidimensional Hermite polynomials.
Expand Down

0 comments on commit 3bc0dca

Please sign in to comment.