Skip to content

Commit 36d499b

Browse files
Update parameter_indexing_proxy.jl
1 parent 874f9d5 commit 36d499b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/parameter_indexing_proxy.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ Method for customizing the table output. Keyword args:
3131
- scalarize: whether to scalarize array symbolics in the table output.
3232
- kwargs... are passed to the pretty_table call (if PrettyTables is loaded).
3333
"""
34-
function show_params end
34+
show_params(io, pip; kwargs...) = _show_params(io, pip; kwargs...)
3535

3636
# Fallback implementation when PrettyTables is not loaded
37-
function show_params(io::IO, pip::ParameterIndexingProxy; num_rows = 20,
37+
function _show_params(io::IO, pip::ParameterIndexingProxy; num_rows = 20,
3838
show_all = false, scalarize = true, kwargs...)
3939
params = Any[]
4040
vals = Any[]

0 commit comments

Comments
 (0)