Skip to content

Commit f3cda34

Browse files
committed
Update plugin.py
1 parent 9a419d4 commit f3cda34

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

cppython/plugins/cmake/plugin.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,7 @@ def run(self, target: str) -> None:
144144
executables = [c for c in candidates if c.is_file()]
145145

146146
if not executables:
147-
raise FileNotFoundError(
148-
f"Could not find executable '{target}' in build directory: {build_path}"
149-
)
147+
raise FileNotFoundError(f"Could not find executable '{target}' in build directory: {build_path}")
150148

151149
executable = executables[0]
152150
subprocess.run([str(executable)], check=True, cwd=self.data.preset_file.parent)

0 commit comments

Comments
 (0)