Skip to content

Commit

Permalink
Resolve clippy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitryAstafyev committed Nov 20, 2024
1 parent 4fbbec2 commit 91ea391
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/apps/indexer/addons/someip-tools/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ use nom::{
combinator::map,
number::streaming::{be_u16, be_u32, be_u8},
sequence::tuple,
IResult,
Finish,
Finish, IResult,
};

use thiserror::Error;
Expand Down Expand Up @@ -60,7 +59,8 @@ pub fn parse_prefix(input: &[u8]) -> Result<(&[u8], std::string::String), Error>
.map_or_else(String::default, |s| format!(" {}", s))
)
},
)(input).finish()
)(input)
.finish()
}

fn parse_instance(input: &[u8]) -> IResult<&[u8], usize, Error> {
Expand Down

0 comments on commit 91ea391

Please sign in to comment.