Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit b193373

Browse files
committed
fix sanity error
1 parent 6bf9dec commit b193373

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

python/mxnet/ndarray/numpy/_op.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2969,7 +2969,7 @@ def append(arr, values, axis=None):
29692969
array([1., 2., 3., 4., 5., 6., 7., 8., 9.])
29702970
29712971
When `axis` is specified, `values` must have the correct shape.
2972-
2972+
29732973
>>> np.append(np.array([[1, 2, 3], [4, 5, 6]]), np.array([[7, 8, 9]]), axis=0)
29742974
array([[1., 2., 3.],
29752975
[4., 5., 6.],

python/mxnet/numpy/multiarray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4833,7 +4833,7 @@ def append(arr, values, axis=None):
48334833
array([1., 2., 3., 4., 5., 6., 7., 8., 9.])
48344834
48354835
When `axis` is specified, `values` must have the correct shape.
4836-
4836+
48374837
>>> np.append(np.array([[1, 2, 3], [4, 5, 6]]), np.array([[7, 8, 9]]), axis=0)
48384838
array([[1., 2., 3.],
48394839
[4., 5., 6.],

python/mxnet/symbol/numpy/_symbol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3059,7 +3059,7 @@ def append(arr, values, axis=None):
30593059
array([1., 2., 3., 4., 5., 6., 7., 8., 9.])
30603060
30613061
When `axis` is specified, `values` must have the correct shape.
3062-
3062+
30633063
>>> np.append(np.array([[1, 2, 3], [4, 5, 6]]), np.array([[7, 8, 9]]), axis=0)
30643064
array([[1., 2., 3.],
30653065
[4., 5., 6.],

0 commit comments

Comments
 (0)