Skip to content

Commit

Permalink
KER-1: Fix minor Clippy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mikroskeem committed Dec 31, 2024
1 parent 4ab97cb commit f50a8e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ impl CommandTarget {
match self {
Self::Local { .. } => {}
Self::Remote { hostname, dry, .. } if !*dry => {
let _ = hostname;
// TODO: ssh -O exit ${hostname}
}
_ => {}
Expand Down
3 changes: 3 additions & 0 deletions src/task/import_tasks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ strike! {
#[async_trait]
impl Task for ImportTasks {
async fn run(context: TaskContext, value: Value) -> TaskResult {
let _ = context;
let _ = value;

Ok(None)
}
}
Expand Down

0 comments on commit f50a8e1

Please sign in to comment.