Clean up linting warnings: redundant import.

Commands:

    cargo clippy --tests --no-deps --workspace

Warnings:

    warning: this import is redundant
      --> database/src/fs.rs:12:1
       |
    12 | use tempfile;
       | ^^^^^^^^^^^^^ help: remove it entirely
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_component_path_imports
       = note: `#[warn(clippy::single_component_path_imports)]` on by default
This commit is contained in:
Zeke Fast
2025-04-27 14:09:53 +02:00
parent 62b936864d
commit 5731f8aa2b

View File

@@ -9,7 +9,6 @@ use std::path::{Path, PathBuf};
use pathdiff::diff_paths;
use std::time::SystemTime;
use tempfile;
use url::form_urlencoded;
use crate::Result;