Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
gshipunov committed May 21, 2023
1 parent 93272f9 commit 31b1ba0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/locations/waypoint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pub struct Waypoint {
/// reporting point this waypoint was created from
pub r09_reporting_point: Option<i32>,
/// destination number of the r09 telegram
pub r09_destination_number: Option<i32>
pub r09_destination_number: Option<i32>,
}

impl From<GrpcWaypoint> for Waypoint {
Expand All @@ -64,7 +64,7 @@ impl From<GrpcWaypoint> for Waypoint {
run: waypoint.run,
delayed: waypoint.delayed,
r09_reporting_point: waypoint.r09_reporting_point,
r09_destination_number: waypoint.r09_destination_number
r09_destination_number: waypoint.r09_destination_number,
}
}
}

0 comments on commit 31b1ba0

Please sign in to comment.