Skip to content

Commit

Permalink
fix lint on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Mar 19, 2024
1 parent 32719fb commit daad5b7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,6 @@ pub mod os_limited {
borrow::Borrow,
collections::HashSet,
hash::{Hash, Hasher},
path::PathBuf,
};

use super::{platform, Error, TrashItem, TrashItemMetadata};
Expand Down Expand Up @@ -391,7 +390,7 @@ pub mod os_limited {
/// # Ok::<(), trash::Error>(())
/// ```
#[cfg(all(unix, not(target_os = "macos"), not(target_os = "ios"), not(target_os = "android")))]
pub fn trash_folders() -> Result<HashSet<PathBuf>, Error> {
pub fn trash_folders() -> Result<HashSet<std::path::PathBuf>, Error> {
platform::trash_folders()
}

Expand Down

0 comments on commit daad5b7

Please sign in to comment.