Skip to content

Commit

Permalink
fix: fix clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
fspoettel committed Oct 21, 2023
1 parent bbb0f2c commit dfafa5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin/scaffold.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use std::{
process,
};

const MODULE_TEMPLATE: &str = r###"pub fn part_one(input: &str) -> Option<u32> {
const MODULE_TEMPLATE: &str = r#"pub fn part_one(input: &str) -> Option<u32> {
None
}
Expand Down Expand Up @@ -38,7 +38,7 @@ mod tests {
assert_eq!(part_two(&input), None);
}
}
"###;
"#;

fn parse_args() -> Result<u8, pico_args::Error> {
let mut args = pico_args::Arguments::from_env();
Expand Down

0 comments on commit dfafa5f

Please sign in to comment.