Skip to content

Commit e11ddec

Browse files
committed
Lint
1 parent 2f18046 commit e11ddec

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

examples/models/llama/tests/test_export_llama_lib.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66

77
import unittest
88

9-
import torch
10-
119
from executorch.devtools.backend_debug import get_delegation_info
1210
from executorch.examples.models.llama.export_llama_lib import (
1311
_export_llama,
@@ -46,5 +44,5 @@ def test_has_expected_ops_and_op_counts(self):
4644
graph_module = builder.edge_manager.exported_program().graph_module
4745
delegation_info = get_delegation_info(graph_module)
4846

49-
for op, op_info in delegation_info.delegation_by_operator.items():
47+
for op, _op_info in delegation_info.delegation_by_operator.items():
5048
self.assertTrue(op not in UNWANTED_OPS)

0 commit comments

Comments
 (0)