Skip to content

Commit

Permalink
fix type inference in package name
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesCranmer committed Jun 18, 2024
1 parent af78c8c commit 5904de7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ function get_package_name_defaults(package_name::String, url::String, path::Stri
if path != ""
toml_path = joinpath(path, "Project.toml")
toml = parsefile(toml_path)
package_name = toml["name"]
package_name = toml["name"]::String
end

return (package_name, url, path)
Expand Down

0 comments on commit 5904de7

Please sign in to comment.