Skip to content

Commit ba0a353

Browse files
committed
Format
1 parent 15ede71 commit ba0a353

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

clr_loader/util/find.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def find_dotnet_root() -> Path:
4242
prog_files = Path(prog_files)
4343
dotnet_root = prog_files / "dotnet"
4444
elif sys.platform == "darwin":
45-
if sys.maxsize > 2**32: # is_64bits
45+
if sys.maxsize > 2**32: # is_64bits
4646
dotnet_root = Path("/usr/local/share/dotnet/x64")
4747
else:
4848
dotnet_root = Path("/usr/local/share/dotnet")

doc/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66

77
# Add parent to path for autodoc
88
import sys, os
9-
sys.path.append(os.path.abspath('..'))
9+
10+
sys.path.append(os.path.abspath(".."))
1011

1112
# autodoc_typehints = "both"
1213

0 commit comments

Comments
 (0)