From 8df5e13837401651c8bf6cf582468e3ce9ad1a83 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Fri, 13 Dec 2024 08:44:26 +0000 Subject: [PATCH] build: clippy will apply any fixes it can --- justfile | 2 +- src/trello/api/boards.rs | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/justfile b/justfile index ad8421e..1b9c1da 100644 --- a/justfile +++ b/justfile @@ -4,7 +4,7 @@ build: export RUSTFLAGS="-Cdebuginfo=2 -Cstrip=none --cfg=tarpaulin -Cinstrument-coverage -Clink-dead-code" cargo fmt cargo fmt --check - cargo clippy + cargo clippy --no-deps --fix --allow-dirty cargo machete # cargo build cargo tarpaulin --skip-clean --out Html diff --git a/src/trello/api/boards.rs b/src/trello/api/boards.rs index 6f8ff9b..d582605 100644 --- a/src/trello/api/boards.rs +++ b/src/trello/api/boards.rs @@ -3,8 +3,6 @@ // use color_eyre::Result; // use kxio::net::Net; -use crate::trello::types::{board::TrelloBoard, TrelloBoardName}; - // pub async fn get_board( // auth: &TrelloAuth, // board_id: &TrelloBoardId,