Skip to content

Commit f763c63

Browse files
committed
Revert MacOS path workaround.
1 parent 02fffd1 commit f763c63

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lang/python/mvsr/libmvsr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def from_param(cls: type, obj: np.ndarray | None):
5252

5353
LIBRARY_EXTENSION = {"Windows": "dll", "Darwin": "dylib"}.get(platform.system(), "so")
5454
LIBRARY_PATH = Path(__file__).parent / "lib" / f"libmvsr.{LIBRARY_EXTENSION}"
55-
_libmvsr = ctypes.CDLL(str(LIBRARY_PATH.resolve()))
55+
_libmvsr = ctypes.CDLL(str(LIBRARY_PATH))
5656

5757
########################
5858
# Function definitions #

0 commit comments

Comments
 (0)