fix line length warning in object parser

This commit is contained in:
Fly Dev 2025-06-23 14:27:51 +00:00
parent 10faad0e44
commit f16740e27c

View file

@ -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)