From b3f54226d2e2b1dd949b43363172ddfda5cf8d7e Mon Sep 17 00:00:00 2001 From: Wataru Otsubo Date: Thu, 16 Jan 2025 13:01:40 +0100 Subject: [PATCH] fix: wrong variable name --- src/ClockParser.jl | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/ClockParser.jl b/src/ClockParser.jl index 70ba75c..0bf0c7c 100644 --- a/src/ClockParser.jl +++ b/src/ClockParser.jl @@ -100,10 +100,12 @@ function get_skew_and_riseup(file::T) where {T <: AbstractString} skew = missing is_raised = false - let - _time, high = _parse_line(popfirst!(lines)) + last_low_time = let + time, high = _parse_line(popfirst!(lines)) if high == 0 - last_low_time = time + time + else + missing end end