Skip to content

Commit

Permalink
Remove unused argument
Browse files Browse the repository at this point in the history
  • Loading branch information
niboshi committed Jun 16, 2017
1 parent c733246 commit c404ce4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cupy/manipulation/dims.py
Expand Up @@ -20,7 +20,7 @@
}


def _atleast_nd_helper(n, func_name, arys):
def _atleast_nd_helper(n, arys):
"""Helper function for atleast_nd functions."""

res = []
Expand Down Expand Up @@ -53,7 +53,7 @@ def atleast_1d(*arys):
.. seealso:: :func:`numpy.atleast_1d`
"""
return _atleast_nd_helper(1, 'atleast_1d', arys)
return _atleast_nd_helper(1, arys)


def atleast_2d(*arys):
Expand All @@ -73,7 +73,7 @@ def atleast_2d(*arys):
.. seealso:: :func:`numpy.atleast_2d`
"""
return _atleast_nd_helper(2, 'atleast_2d', arys)
return _atleast_nd_helper(2, arys)


def atleast_3d(*arys):
Expand All @@ -99,7 +99,7 @@ def atleast_3d(*arys):
.. seealso:: :func:`numpy.atleast_3d`
"""
return _atleast_nd_helper(3, 'atleast_3d', arys)
return _atleast_nd_helper(3, arys)


broadcast = core.broadcast
Expand Down

0 comments on commit c404ce4

Please sign in to comment.