Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
cataggar committed Sep 28, 2023
1 parent 8a38aa2 commit 378eb9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/autorust/codegen/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ pub fn run<'a>(crate_config: &'a CrateConfig, package_config: &'a PackageConfig)
if crate_config.should_run(&Runs::Routes) {
let routes = codegen_routes::create_routes(&cg)?;
let routes_path = io::join(&crate_config.output_folder, "routes.rs")?;
write_file(&routes_path, &routes, crate_config.print_writing_file())?;
write_file(routes_path, &routes, crate_config.print_writing_file())?;
}

Ok(cg)
Expand Down

0 comments on commit 378eb9c

Please sign in to comment.