Skip to content

Commit

Permalink
Code format
Browse files Browse the repository at this point in the history
  • Loading branch information
gi0baro committed Jan 21, 2024
1 parent 59c6996 commit deb060c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/asgi/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ macro_rules! handle_request_with_ws {
.map_err(|e| match e {})
.boxed(),
)
.unwrap()
.unwrap();
}
};
}
Expand Down
2 changes: 1 addition & 1 deletion src/asgi/io.rs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ impl ASGIHTTPProtocol {
Err(_) => {
log::info!("Cannot open file {}", &file_path);
response_404()
},
}
};
let _ = tx.send(res);
Ok(())
Expand Down
2 changes: 1 addition & 1 deletion src/rsgi/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ macro_rules! handle_request_with_ws {
.map_err(|e| match e {})
.boxed(),
)
.unwrap()
.unwrap();
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/rsgi/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ impl PyResponseFile {
Err(_) => {
log::info!("Cannot open file {}", &self.file_path);
response_404()
},
}
}
}
}

0 comments on commit deb060c

Please sign in to comment.