We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a419d4 commit f3cda34Copy full SHA for f3cda34
cppython/plugins/cmake/plugin.py
@@ -144,9 +144,7 @@ def run(self, target: str) -> None:
144
executables = [c for c in candidates if c.is_file()]
145
146
if not executables:
147
- raise FileNotFoundError(
148
- f"Could not find executable '{target}' in build directory: {build_path}"
149
- )
+ raise FileNotFoundError(f"Could not find executable '{target}' in build directory: {build_path}")
150
151
executable = executables[0]
152
subprocess.run([str(executable)], check=True, cwd=self.data.preset_file.parent)
0 commit comments