Skip to content

Commit

Permalink
Fix use of eval
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesCranmer committed Dec 24, 2023
1 parent db42fff commit 0becbf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Configure.jl
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ function import_module_on_workers(procs, filename::String, options::Options, ver
else
verbosity > 0 && @info "Importing installed module on workers..."
@everywhere procs begin
Base.MainInclude.eval(using SymbolicRegression)
Base.MainInclude.eval(:(using SymbolicRegression))
end
verbosity > 0 && @info "Finished!"
end
Expand Down

0 comments on commit 0becbf4

Please sign in to comment.