Skip to content

Commit

Permalink
chore:test
Browse files Browse the repository at this point in the history
  • Loading branch information
a0m0rajab authored Sep 29, 2023
1 parent e6da3a8 commit 7df6955
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ivy/functional/frontends/mindspore/numpy.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import ivy


def array(obj, dtype=None, copy=True, ndmin=4):
def array(obj, dtype=None, copy=True, ndmin=0):
ret = ivy.array(obj, dtype=dtype, copy=copy)
while ndmin > len(ret.shape):
ret = ivy.expand_dims(ret, axis=0)
Expand Down

0 comments on commit 7df6955

Please sign in to comment.