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

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-haibin-lin committed Jul 20, 2017
1 parent f7d27a4 commit 41a0257
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion python/mxnet/module/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import warnings

from .. import context as ctx
from .. import symbol as _sym
from .. import optimizer as opt

from .executor_group import DataParallelExecutorGroup
Expand Down
5 changes: 4 additions & 1 deletion python/mxnet/ndarray/ndarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@
from ..context import Context
from . import _internal
from .op import NDArrayBase, _STORAGE_TYPE_ID_TO_STR
from . import *
from . import broadcast_add, broadcast_mul, transpose, broadcast_not_equal, broadcast_power
from . import broadcast_sub, broadcast_div, broadcast_to, broadcast_equal, cast_storage
from . import broadcast_greater, broadcast_greater_equal, broadcast_lesser, broadcast_lesser_equal
from . import zeros_like, slice

# pylint: disable= no-member
_DTYPE_NP_TO_MX = {
Expand Down

0 comments on commit 41a0257

Please sign in to comment.