Skip to content

Commit 2623c3b

Browse files
committed
fix: pre-commit
Signed-off-by: Aaron Pham <contact@aarnphm.xyz>
1 parent 8e61b6a commit 2623c3b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/compile/test_pass_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_bad_callable():
2222
pass_manager.configure(config)
2323

2424
with pytest.raises(AssertionError):
25-
pass_manager.add(simple_callable) # noqa, type wrong on purpose
25+
pass_manager.add(simple_callable)
2626

2727

2828
# Pass that inherits from InductorPass

vllm/compilation/inductor_pass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from torch._inductor.custom_graph_pass import CustomGraphPass
1717
else:
1818
# CustomGraphPass is not present in 2.5 or lower, import our version
19-
from .torch25_custom_graph_pass import ( # noqa: yapf
19+
from .torch25_custom_graph_pass import ( # noqa: E501
2020
Torch25CustomGraphPass as CustomGraphPass)
2121

2222
_pass_context = None

0 commit comments

Comments
 (0)