fix: wrong variable name

This commit is contained in:
Wataru Otsubo 2025-01-16 13:01:40 +01:00
parent 27857a4c3d
commit b3f54226d2

View file

@ -100,10 +100,12 @@ function get_skew_and_riseup(file::T) where {T <: AbstractString}
skew = missing skew = missing
is_raised = false is_raised = false
let last_low_time = let
_time, high = _parse_line(popfirst!(lines)) time, high = _parse_line(popfirst!(lines))
if high == 0 if high == 0
last_low_time = time time
else
missing
end end
end end