Skip to content
Snippets Groups Projects
Verified Commit 23cdba74 authored by Michiel Cottaar's avatar Michiel Cottaar
Browse files

Do not print infinite TR

parent 25444667
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,7 @@ function Base.show(io::IO, printer::BuildingBlockPrinter{<:Sequence})
end
end
TR = _robust_value(seq.TR)
if !isnothing(TR)
if !isnothing(TR) && isfinite(TR)
print(io, "TR=", Int(round(TR)))
end
print(io, "):")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment