Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ptsavol committed Dec 2, 2024
1 parent 4ed6779 commit 4a58fcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spine_engine/utils/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,8 @@ def get_julia_env(use_jupyter_console, julia_kernel, julia_path, julia_project_p
project = "" if project_arg is None else project_arg.split("--project=")[1]
return julia, project
if julia_path == "":
julia = resolve_executable_from_path(JULIA_EXECUTABLE)
if julia == "":
julia_path = resolve_executable_from_path(JULIA_EXECUTABLE)
if julia_path == "":
return None
return julia_path, julia_project_path

Expand Down

0 comments on commit 4a58fcd

Please sign in to comment.