Skip to content

Commit a0d2b63

Browse files
authored
Fix clippy
1 parent 1456be2 commit a0d2b63

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

crates/bot/src/worker.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ impl Process {
122122
async fn spawn() -> anyhow::Result<Self> {
123123
const VAR_NAME: &str = "TYPST_BOT_WORKER_PATH";
124124
let worker_path = std::env::var_os(VAR_NAME).unwrap_or_else(|| "./worker".into());
125+
#[allow(clippy::unnecessary_debug_formatting)]
125126
let child = std::process::Command::new(&worker_path)
126127
.stdin(Stdio::piped())
127128
.stdout(Stdio::piped())

0 commit comments

Comments
 (0)