Skip to content

Commit

Permalink
Bug isnothing
Browse files Browse the repository at this point in the history
Correccion para linux?
  • Loading branch information
EdwardAngelino committed Jul 17, 2020
1 parent f54fcb4 commit 7a59ecd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/leearchivotxt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function leedatostxt(archivo::String )
i += 1
end
t = eval(Meta.parse(rstrip(data[i],']')))
!(isempty(findall(x->x==']', data[i]))) && !isnothing(t) ? push!(Y,t) : 0
!(isempty(findall(x->x==']', data[i]))) && !isempty(t) ? push!(Y,t) : 0


EYTF=[]; AT=[];
Expand Down

0 comments on commit 7a59ecd

Please sign in to comment.