Skip to content

Commit 4fa4321

Browse files
chore: Fix lints
1 parent d8c9032 commit 4fa4321

File tree

2 files changed

+2
-1
lines changed
  • compiler

2 files changed

+2
-1
lines changed

compiler/pavex_cli/src/activation/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ pub enum CliTokenError {
198198
RpcError(#[source] anyhow::Error),
199199
}
200200

201+
#[allow(unused_assignments)] // It's a false positive.
201202
#[derive(thiserror::Error, miette::Diagnostic, Debug)]
202203
#[error(
203204
"The wizard key you provided is malformed. {details}",

compiler/pavexc/src/compiler/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use std::collections::BTreeSet;
2-
use std::io::{BufWriter, Write};
2+
use std::io::Write;
33
use std::path::Path;
44

55
use ahash::{HashMap, HashMapExt};

0 commit comments

Comments
 (0)