Skip to content

Commit

Permalink
Merge pull request #23118 from jakevdp:fix-comma
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 665411997
  • Loading branch information
jax authors committed Aug 20, 2024
2 parents 16eb13e + 7a4eecd commit 26bda63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jax/_src/basearray.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class Array(abc.ABC):
@property
def nbytes(self) -> int: ...
def nonzero(self, *, fill_value: None | ArrayLike | tuple[ArrayLike, ...] = None,
size: int | None = None,) -> tuple[Array, ...]: ...
size: int | None = None) -> tuple[Array, ...]: ...
def prod(self, axis: Axis = None, dtype: DTypeLike | None = None,
out: None = None, keepdims: bool = False,
initial: ArrayLike | None = None, where: ArrayLike | None = None,
Expand Down

0 comments on commit 26bda63

Please sign in to comment.