Skip to content

Commit b666f7b

Browse files
committed
format
Signed-off-by: Sarnie, Nick <[email protected]>
1 parent 0061488 commit b666f7b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sycl/test-e2e/lit.cfg.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ def open_check_file(file_name):
441441
"{} {}".format(config.run_launcher, sycl_ls) if config.run_launcher else sycl_ls
442442
)
443443
sp = subprocess.check_output(cmd, text=True, shell=True)
444-
for line in sp.splitlines():
444+
for line in sp.splitlines():
445445
if not line.startswith("["):
446446
continue
447447
(backend, device) = line[1:].split("]")[0].split(":")
@@ -770,7 +770,7 @@ def open_check_file(file_name):
770770
if amd_arch_prefix not in arch or len(architecture_feature) != 1:
771771
lit_config.error(
772772
"Cannot detect architecture for AMD HIP device, specify it explicitly"
773-
)
773+
)
774774
config.amd_arch = arch.replace(amd_arch_prefix, "")
775775
llvm_config.with_system_environment("ROCM_PATH")
776776
config.available_features.add("hip_amd")
@@ -804,7 +804,7 @@ def open_check_file(file_name):
804804
)
805805
config.substitutions.append(
806806
("%clang", " " + config.dpcpp_compiler + " " + config.c_flags)
807-
)
807+
)
808808

809809
# Set timeout for a single test
810810
try:

0 commit comments

Comments
 (0)