Skip to content

Commit b8add38

Browse files
committed
Add None value to a range of possible values
1 parent 557e66d commit b8add38

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dpnp/dpnp_iface_nanfunctions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,7 @@ def nanstd(
10631063
10641064
Default: ``None``.
10651065
1066-
correction : {int, float}, optional
1066+
correction : {None, int, float}, optional
10671067
Array API compatible name for the `ddof` parameter. Only one of them
10681068
can be provided at the same time.
10691069
@@ -1211,7 +1211,7 @@ def nanvar(
12111211
12121212
Default: ``None``.
12131213
1214-
correction : {int, float}, optional
1214+
correction : {None, int, float}, optional
12151215
Array API compatible name for the `ddof` parameter. Only one of them
12161216
can be provided at the same time.
12171217

dpnp/dpnp_iface_statistics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1306,7 +1306,7 @@ def std(
13061306
13071307
Default: ``None``.
13081308
1309-
correction : {int, float}, optional
1309+
correction : {None, int, float}, optional
13101310
Array API compatible name for the `ddof` parameter. Only one of them
13111311
can be provided at the same time.
13121312
@@ -1500,7 +1500,7 @@ def var(
15001500
15011501
Default: ``None``.
15021502
1503-
correction : {int, float}, optional
1503+
correction : {None, int, float}, optional
15041504
Array API compatible name for the `ddof` parameter. Only one of them
15051505
can be provided at the same time.
15061506

0 commit comments

Comments
 (0)