fix line length warning in object parser
This commit is contained in:
parent
10faad0e44
commit
f16740e27c
1 changed files with 1 additions and 2 deletions
|
|
@ -33,8 +33,7 @@ defmodule Parser.Object do
|
|||
_ -> %{latitude: nil, longitude: nil, comment: comment, position_format: :compressed}
|
||||
end
|
||||
|
||||
<<latitude::binary-size(8), sym_table_id::binary-size(1), longitude::binary-size(9), symbol_code::binary-size(1),
|
||||
comment::binary>> ->
|
||||
<<latitude::binary-size(8), sym_table_id::binary-size(1), longitude::binary-size(9), comment::binary>> ->
|
||||
%{latitude: lat, longitude: lon} =
|
||||
Parser.Position.parse_aprs_position(latitude, longitude)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue