Skip to content

Commit dabeb6a

Browse files
committed
Formatting
1 parent 21338de commit dabeb6a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lit.cfg.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ def find_filecheck() -> str:
4646
python = os.environ.get("PYTHON", "python")
4747
config.substitutions.append(("%PYTHON", python))
4848
if pythonpath := os.environ.get("PYTHONPATH"):
49-
config.substitutions[-1] = ("%PYTHON", f"env PYTHONPATH={shlex.quote(pythonpath)} {python}")
49+
config.substitutions[-1] = (
50+
"%PYTHON",
51+
f"env PYTHONPATH={shlex.quote(pythonpath)} {python}",
52+
)
5053

5154
for pkg in ["torch", "mpi4py", "mpich", "impi-rt"]:
5255
if importlib.util.find_spec(pkg):

0 commit comments

Comments
 (0)