Skip to content

Commit

Permalink
fix python lint warnings (#3145)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiics authored and tqchen committed May 8, 2019
1 parent da3ef68 commit 981db15
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/tvm/relay/frontend/coreml.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
# pylint: disable=invalid-name, import-self, unused-argument, unused-variable, inconsistent-return-statements
"""CoreML frontend."""
from __future__ import absolute_import as _abs
import tvm
import numpy as np
import tvm
from .. import ir_pass
from .. import expr as _expr
from .. import op as _op
Expand Down
2 changes: 1 addition & 1 deletion python/tvm/relay/frontend/keras.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"""Keras frontend."""
from __future__ import absolute_import as _abs
import sys
import tvm
import numpy as np
import tvm
from .. import ir_pass
from .. import expr as _expr
from .. import op as _op
Expand Down
2 changes: 1 addition & 1 deletion python/tvm/relay/frontend/onnx.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
from __future__ import absolute_import as _abs

import logging
import tvm
import numpy as np
import tvm
from ... import nd as _nd
from .. import ir_pass
from .. import expr as _expr
Expand Down

0 comments on commit 981db15

Please sign in to comment.