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

Commit fd4f6e7

Browse files
committed
Local import inspect
1 parent ed88d5b commit fd4f6e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/mxnet/numpy_op_signature.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"""Make builtin ops' signatures compatible with NumPy."""
1919

2020
from __future__ import absolute_import
21-
import inspect
2221
import sys
2322
import warnings
2423
from . import _numpy_op_doc
@@ -63,6 +62,7 @@ def _register_op_signatures():
6362
.format(str(sys.version)))
6463
return
6564

65+
import inspect
6666
for op_name in dir(_numpy_op_doc):
6767
op = _get_builtin_op(op_name)
6868
if op is not None:

0 commit comments

Comments
 (0)