mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-04-26 23:49:59 -07:00
Fix clippy lints and upgrade deku
Old version of deku was throwing clippy lints in generated code
This commit is contained in:
committed by
Will Greenberg
parent
a8087c6840
commit
32b67df55d
@@ -130,8 +130,8 @@ impl DiagDevice {
|
||||
);
|
||||
|
||||
match MessagesContainer::from_bytes((&self.read_buf[0..bytes_read], 0)) {
|
||||
Ok((_, container)) => return Ok(container),
|
||||
Err(err) => return Err(DiagDeviceError::ParseMessagesContainerError(err)),
|
||||
Ok((_, container)) => Ok(container),
|
||||
Err(err) => Err(DiagDeviceError::ParseMessagesContainerError(err)),
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user