Skip to content

Commit b6468e0

Browse files
committed
Fix LibJulia.load usage
1 parent acacb48 commit b6468e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/julia/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ def __init__(self, init_julia=True, jl_init_path=None, runtime=None,
10231023
# `InProcessLibJulia` does not work on Windows at the
10241024
# moment. See:
10251025
# https://github.com/JuliaPy/pyjulia/issues/287
1026-
self.api = LibJulia.load(runtime)
1026+
self.api = LibJulia.load(julia=runtime)
10271027
else:
10281028
self.api = InProcessLibJulia()
10291029

0 commit comments

Comments
 (0)