Skip to content

Commit

Permalink
Drop spaces around keyword argument.
Browse files Browse the repository at this point in the history
Appears we had a minor PEP8 issue in one of the doctests where there
were spaces around the `=` of the keyword argument. This fixes the issue
by dropping those spaces.
  • Loading branch information
jakirkham committed Mar 9, 2017
1 parent ccd4772 commit c6c80ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xnumpy/core.py
Expand Up @@ -143,7 +143,7 @@ def expand(new_array,
[4, 4, 4, 4],
[5, 5, 5, 5]]]])
>>> expand(numpy.arange(6).reshape((2,3)), shape_after = (4,3))
>>> expand(numpy.arange(6).reshape((2,3)), shape_after=(4,3))
array([[[[0, 0, 0],
[0, 0, 0],
[0, 0, 0],
Expand Down

0 comments on commit c6c80ca

Please sign in to comment.