Skip to content

Commit 9caf9e6

Browse files
author
tac0turtle
committed
format
1 parent 0f17793 commit 9caf9e6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

client/crates/types/build.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,9 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
3232
return Ok(());
3333
}
3434
// Otherwise, this is a real error
35-
return Err(format!(
36-
"Proto files not found and no pre-generated files available: {e}"
37-
)
38-
.into());
35+
return Err(
36+
format!("Proto files not found and no pre-generated files available: {e}").into(),
37+
);
3938
}
4039
};
4140

0 commit comments

Comments
 (0)