Skip to content

Commit 2e2ccee

Browse files
committed
cast to tuple
1 parent 5254479 commit 2e2ccee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numpy/_core/shape_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def atleast_1d(*arys):
7171
if result.ndim == 0:
7272
result = result.reshape(1)
7373
res.append(result)
74-
return res
74+
return tuple(res)
7575

7676

7777
def _atleast_2d_dispatcher(*arys):

0 commit comments

Comments
 (0)