Skip to content

Commit

Permalink
fix pylint (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-haibin-lin committed Jun 19, 2017
1 parent 24105cf commit ddbe565
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/mxnet/optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
import math
import pickle
import logging
import mxnet as mx
from .ndarray import NDArray, clip, sqrt, sign
from .ndarray import sgd_update, sgd_mom_update, adam_update, rmsprop_update, rmspropalex_update
from .random import normal
import mxnet as mx


class Optimizer(object):
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 @@ -19,10 +19,10 @@
except ImportError:
# in rare cases requests may be not installed
pass
import mxnet as mx
from .context import Context
from .ndarray import array, _STORAGE_TYPE_STR_TO_ID
from .symbol import Symbol
import mxnet as mx

_rng = np.random.RandomState(1234)

Expand Down

0 comments on commit ddbe565

Please sign in to comment.