We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e61b6a commit 2623c3bCopy full SHA for 2623c3b
tests/compile/test_pass_manager.py
@@ -22,7 +22,7 @@ def test_bad_callable():
22
pass_manager.configure(config)
23
24
with pytest.raises(AssertionError):
25
- pass_manager.add(simple_callable) # noqa, type wrong on purpose
+ pass_manager.add(simple_callable)
26
27
28
# Pass that inherits from InductorPass
vllm/compilation/inductor_pass.py
@@ -16,7 +16,7 @@
16
from torch._inductor.custom_graph_pass import CustomGraphPass
17
else:
18
# CustomGraphPass is not present in 2.5 or lower, import our version
19
- from .torch25_custom_graph_pass import ( # noqa: yapf
+ from .torch25_custom_graph_pass import ( # noqa: E501
20
Torch25CustomGraphPass as CustomGraphPass)
21
_pass_context = None
0 commit comments