Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinpfoertner committed Feb 17, 2023
1 parent b7cf0e3 commit 8dc9a63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/probnum/utils/arrayutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@


def atleast_1d( # pylint: disable=missing-raises-doc
*rvs: Union[ArrayLike, scipy.sparse.spmatrix, probnum.randvars.RandomVariable],
*rvs: Union[ArrayLike, scipy.sparse.spmatrix, "probnum.randvars.RandomVariable"],
) -> Sequence[
Union[np.ndarray, scipy.sparse.spmatrix, probnum.randvars.RandomVariable]
Union[np.ndarray, scipy.sparse.spmatrix, "probnum.randvars.RandomVariable"]
]:
"""Convert arrays or random variables to arrays or random variables with at least
one dimension.
Expand Down

0 comments on commit 8dc9a63

Please sign in to comment.