Skip to content

Commit ef3c85a

Browse files
author
Ashutosh Parkhi
committed
Fixed lint issues with tensorflow import
Change-Id: I7a520beec9c244e9c790d3e82733c2fb476f7e5e
1 parent a716a33 commit ef3c85a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/tvm/relay/testing/tflite.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
pytest.importorskip("tflite")
2424
pytest.importorskip("tensorflow")
25-
import tflite.Model
26-
import tensorflow as tf
25+
import tflite.Model # pylint: disable=wrong-import-position
26+
import tensorflow as tf # pylint: disable=wrong-import-position
2727

2828

2929
class TFLiteModel:

0 commit comments

Comments
 (0)