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

Commit

Permalink
Fixes sanity check lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
perdasilva committed Oct 14, 2019
1 parent 9be9698 commit 34c63d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/mxnet/numpy_op_signature.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

"""Make builtin ops' signatures compatible with NumPy."""

import inspect
import sys
import warnings
from . import _numpy_op_doc
Expand Down Expand Up @@ -61,7 +62,6 @@ def _register_op_signatures():
.format(str(sys.version)))
return

import inspect
for op_name in dir(_numpy_op_doc):
op = _get_builtin_op(op_name)
if op is not None:
Expand Down

0 comments on commit 34c63d1

Please sign in to comment.