fmt and clippy
Rust/spacepackets/pipeline/head This commit looks good Details
Rust/spacepackets/pipeline/pr-main This commit looks good Details

This commit is contained in:
lkoester 2023-01-26 19:08:29 +01:00
parent 5b021fec22
commit 34bf9780af
1 changed files with 3 additions and 1 deletions

View File

@ -442,7 +442,9 @@ impl<'app_data> PusTc<'app_data> {
impl PartialEq for PusTc<'_> {
fn eq(&self, other: &Self) -> bool {
self.sp_header == other.sp_header && self.sec_header == other.sec_header && self.app_data == other.app_data
self.sp_header == other.sp_header
&& self.sec_header == other.sec_header
&& self.app_data == other.app_data
}
}