Skip to content

Commit

Permalink
Merge pull request #563 from AayushSabharwal/as/plotting
Browse files Browse the repository at this point in the history
fix: add cleansyms method to hotfix plotting
  • Loading branch information
ChrisRackauckas authored Dec 19, 2023
2 parents 7465a4f + c559e1c commit 48e2cee
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/symbolic_utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ end

cleansyms(syms::Nothing) = nothing
cleansyms(syms::Tuple) = collect(cleansym(sym) for sym in syms)
cleansyms(syms::Vector) = cleansyms(Symbol.(syms))
cleansyms(syms::Vector{Symbol}) = cleansym.(syms)
cleansyms(syms::LinearIndices) = nothing
cleansyms(syms::CartesianIndices) = nothing
Expand Down

0 comments on commit 48e2cee

Please sign in to comment.