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

Commit

Permalink
Fix sanity
Browse files Browse the repository at this point in the history
  • Loading branch information
reminisce committed Aug 2, 2019
1 parent eca305c commit 63bbb6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/mxnet/numpy/multiarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ def size_array(self, *args, **kwargs):
"""
raise AttributeError('mxnet.numpy.ndarray object has no attribute size_array')

def expand_dims(self, *args, **kwargs):
def expand_dims(self, *args, **kwargs): # pylint: disable=arguments-differ,unused-argument
"""Convenience fluent method for :py:func:`expand_dims`.
The arguments are the same as for :py:func:`expand_dims`, with
Expand Down
2 changes: 1 addition & 1 deletion python/mxnet/symbol/numpy/_symbol.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ def size_array(self, *args, **kwargs):
"""
raise AttributeError('_Symbol object has no attribute size_array')

def expand_dims(self, *args, **kwargs):
def expand_dims(self, *args, **kwargs): # pylint: disable=arguments-differ,unused-argument
"""Convenience fluent method for :py:func:`expand_dims`.
The arguments are the same as for :py:func:`expand_dims`, with
Expand Down

0 comments on commit 63bbb6c

Please sign in to comment.