Skip to content

Commit

Permalink
Stop pylint complaining about useless import alias. (apache#2655)
Browse files Browse the repository at this point in the history
Recent pylint warngs about import renames with no effect.  Remove
them.
  • Loading branch information
mshawcroft authored and wweic committed Mar 12, 2019
1 parent df5d2c2 commit 32959e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/tvm/rpc/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from . import base
from ..contrib import util
from .._ffi.base import TVMError
from .._ffi import function as function
from .._ffi import function
from .._ffi import ndarray as nd
from ..module import load as _load_module

Expand Down
2 changes: 1 addition & 1 deletion vta/python/vta/ir_pass.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from __future__ import absolute_import as _abs

import tvm
from topi import util as util
from topi import util

from .environment import get_env

Expand Down

0 comments on commit 32959e1

Please sign in to comment.