Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
69444905
Unverified
Commit
69444905
authored
Apr 01, 2026
by
Luka Govedič
Committed by
GitHub
Apr 02, 2026
Browse files
Fix multiline-format string for python 3.10 (#38739)
Signed-off-by:
Luka Govedic
<
luka.govedic@gmail.com
>
parent
6241521d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
vllm/compilation/passes/ir/lowering_pass.py
vllm/compilation/passes/ir/lowering_pass.py
+2
-3
No files found.
vllm/compilation/passes/ir/lowering_pass.py
View file @
69444905
...
@@ -149,9 +149,8 @@ class VllmIRLoweringPass(VllmInductorPass):
...
@@ -149,9 +149,8 @@ class VllmIRLoweringPass(VllmInductorPass):
)
)
impl_uuids_str
=
";"
.
join
(
impl_uuids_str
=
";"
.
join
(
f
"
{
name
}
=
{
f
"
{
name
}
="
','
.
join
(
IrOp
.
registry
[
name
].
impls
[
provider
].
uuid
()
for
provider
in
p
)
+
","
.
join
(
IrOp
.
registry
[
name
].
impls
[
provider
].
uuid
()
for
provider
in
p
)
}
"
for
name
,
p
in
priorities
.
items
()
for
name
,
p
in
priorities
.
items
()
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment