Skip to content

Commit

Permalink
fix lint (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-haibin-lin committed Aug 8, 2017
1 parent 85cbc60 commit fc1aa6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/mxnet/ndarray/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from . import _internal
from . import op
from .op import CachedOp
# pylint: disable=wildcard-import
# pylint: disable=wildcard-import, redefined-builtin
from .ndarray import *
from .utils import load, save, zeros, empty, array
from .sparse_ndarray import _ndarray_cls, csr_matrix, row_sparse_array
Expand Down
2 changes: 1 addition & 1 deletion python/mxnet/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
import os
import errno
import logging
import scipy.sparse as sp
from contextlib import contextmanager
import scipy.sparse as sp
import numpy as np
import numpy.testing as npt
import numpy.random as rnd
Expand Down

0 comments on commit fc1aa6e

Please sign in to comment.