Skip to content

Commit 7919e18

Browse files
committed
fix flake8 issues
As title
1 parent 581a9bf commit 7919e18

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

buildscripts/github/llvmdev_evaluate.py

+10-5
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,15 @@
1818
}
1919

2020
default_include = [
21-
{ "runner": runner_mapping["linux-64"],
21+
{
22+
"runner": runner_mapping["linux-64"],
2223
"platform": "linux-64",
23-
"recipe": "llvmdev"
24+
"recipe": "llvmdev",
2425
},
25-
{ "runner": runner_mapping["win-64"],
26+
{
27+
"runner": runner_mapping["win-64"],
2628
"platform": "win-64",
27-
"recipe": "llvmdev"
29+
"recipe": "llvmdev",
2830
},
2931
{
3032
"runner": runner_mapping["win-64"],
@@ -33,7 +35,10 @@
3335
},
3436
]
3537

36-
print(f"Deciding what to do based on event: '{event}', label: '{label}', inputs: '{inputs}'")
38+
print(
39+
"Deciding what to do based on event: "
40+
f"'{event}', label: '{label}', inputs: '{inputs}'"
41+
)
3742
if event == "pull_request":
3843
print("pull_request detected")
3944
include = default_include

0 commit comments

Comments
 (0)