mirror of
https://gitlab.cern.ch/wotsubo/PSBoardDataBase.git
synced 2025-06-08 05:55:42 +09:00
fix: wrong variable name
This commit is contained in:
parent
27857a4c3d
commit
b3f54226d2
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue