Skip to content

Commit 23af33d

Browse files
rparolinclaude
andcommitted
style: apply ruff auto-fixes
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 86adb00 commit 23af33d

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

cuda_pathfinder/cuda/pathfinder/_dynamic_libs/search_steps.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -198,12 +198,10 @@ def find_via_path_override(ctx: SearchContext) -> FindResult | None:
198198
err = ", ".join(ctx.error_messages) or f"no matching file under {override!r}"
199199
att = "\n".join(ctx.attachments)
200200
raise DynamicLibNotFoundError(
201-
f'{env_var}={override!r} is set but {ctx.lib_searched_for!r} was not found there: {err}\n{att}'
201+
f"{env_var}={override!r} is set but {ctx.lib_searched_for!r} was not found there: {err}\n{att}"
202202
)
203203

204-
raise DynamicLibNotFoundError(
205-
f'{env_var}={override!r} is set but the path does not exist as a file or directory.'
206-
)
204+
raise DynamicLibNotFoundError(f"{env_var}={override!r} is set but the path does not exist as a file or directory.")
207205

208206

209207
def find_in_site_packages(ctx: SearchContext) -> FindResult | None:

0 commit comments

Comments
 (0)