File tree Expand file tree Collapse file tree
cuda_pathfinder/cuda/pathfinder/_dynamic_libs Expand file tree Collapse file tree Original file line number Diff line number Diff 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
209207def find_in_site_packages (ctx : SearchContext ) -> FindResult | None :
You can’t perform that action at this time.
0 commit comments