Remove unused variables

This commit is contained in:
Daniel Rainer
2025-06-07 18:54:05 +02:00
parent df097b114c
commit 4721ffe512

View File

@@ -50,7 +50,7 @@ def makeenv(script_path, home, test_helper_path):
if test_helper_path:
thp = Path(test_helper_path)
if not os.path.exists(thp / "fish_test_helper"):
comp = subprocess.run(
subprocess.run(
[
"cc",
script_path / "fish_test_helper.c",
@@ -60,7 +60,7 @@ def makeenv(script_path, home, test_helper_path):
)
shutil.copy(thp / "fish_test_helper", home + "/fish_test_helper")
else:
comp = subprocess.run(
subprocess.run(
[
"cc",
script_path / "fish_test_helper.c",