Skip to content

Commit 769f285

Browse files
fix: hotfix plottable_indices
1 parent 85f907b commit 769f285

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solutions/solution_interface.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ indices that can be plotted as continuous variables. This is useful for systems
209209
that store auxiliary variables in the state vector which are not meant to be
210210
used for plotting.
211211
"""
212-
plottable_indices(x::AbstractArray) = 1:length(x)
212+
plottable_indices(x) = 1:length(x)
213213

214214
@recipe function f(sol::AbstractTimeseriesSolution;
215215
plot_analytic = false,

0 commit comments

Comments
 (0)