Skip to content

Commit

Permalink
rust lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dutchie032 committed Sep 10, 2024
1 parent 3918cd3 commit ec492cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rpc/administration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ impl AdministrationService for MissionRpc {
&self,
_request: Request<administration::v0::GetHealthRequest>,
) -> Result<Response<administration::v0::GetHealthResponse>, Status> {
let alive : bool = true;
return Ok(Response::new(administration::v0::GetHealthResponse {
let alive: bool = true;
return Ok(Response::new(administration::v0::GetHealthResponse {
alive,
}));
}
Expand Down

0 comments on commit ec492cb

Please sign in to comment.