Skip to content

Commit aab01c2

Browse files
committed
Lint
1 parent 053d983 commit aab01c2

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

python/tvm/relax/frontend/tflite/tflite_frontend.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,6 @@ def convert_reshape(self, op):
664664
parameters={
665665
k: tvm.runtime.tensor(np.array(v)) for k, v in self.exp_tab.params.items()
666666
},
667-
668667
)
669668
if success:
670669
# convert to flattened list

tests/python/relax/test_frontend_tflite.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ def _get_tflite_model(tflite_model_path, inputs_dict):
5656
def test_squeezenet():
5757
def get_model():
5858
inputs = {"Placeholder": ((1, 224, 224, 3), "float32")}
59-
mod = _get_tflite_model(os.environ["CI_TEST_INVENTORY"] + "/squeezenet.tflite", inputs_dict=inputs)
59+
mod = _get_tflite_model(
60+
os.environ["CI_TEST_INVENTORY"] + "/squeezenet.tflite", inputs_dict=inputs
61+
)
6062
return mod
6163

6264
mod = get_model()

0 commit comments

Comments
 (0)