Skip to content

Commit 2f1f0b3

Browse files
committed
make format easier to read
1 parent 591dce7 commit 2f1f0b3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/codechecker.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,10 +262,10 @@ def _codechecker_test_impl(ctx):
262262
output = ctx.outputs.test_script_wrapper,
263263
is_executable = True,
264264
content = """
265-
{} {}
265+
{python_bin} {test_script}
266266
""".format(
267-
python_interpreter_path,
268-
ctx.outputs.codechecker_test_script.short_path,
267+
python_bin = python_interpreter_path,
268+
test_script = ctx.outputs.codechecker_test_script.short_path,
269269
),
270270
)
271271

0 commit comments

Comments
 (0)