We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02fffd1 commit f763c63Copy full SHA for f763c63
1 file changed
lang/python/mvsr/libmvsr.py
@@ -52,7 +52,7 @@ def from_param(cls: type, obj: np.ndarray | None):
52
53
LIBRARY_EXTENSION = {"Windows": "dll", "Darwin": "dylib"}.get(platform.system(), "so")
54
LIBRARY_PATH = Path(__file__).parent / "lib" / f"libmvsr.{LIBRARY_EXTENSION}"
55
-_libmvsr = ctypes.CDLL(str(LIBRARY_PATH.resolve()))
+_libmvsr = ctypes.CDLL(str(LIBRARY_PATH))
56
57
########################
58
# Function definitions #
0 commit comments