Skip to content

Commit eeed6ec

Browse files
committed
Fix format
1 parent c3445ff commit eeed6ec

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

clr_loader/ffi/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ def load_hostfxr(dotnet_root: Path):
3636
except Exception as err:
3737
error_report.append(f"Path {hostfxr_path} gave the following error:\n{err}")
3838

39-
raise RuntimeError(f"Could not find a suitable hostfxr library in {dotnet_root}. The following paths were scanned:\n\n"+("\n\n".join(error_report)))
39+
raise RuntimeError(
40+
f"Could not find a suitable hostfxr library in {dotnet_root}. The following paths were scanned:\n\n"
41+
+ ("\n\n".join(error_report))
42+
)
4043

4144

4245
def load_mono(path: Optional[Path] = None):

0 commit comments

Comments
 (0)