chore: remove unneeded PathBuf import

This commit is contained in:
Azalea Colburn 2025-08-09 18:07:22 -07:00
parent 18b047ad20
commit 0fb4894e0f
No known key found for this signature in database
2 changed files with 2 additions and 1 deletions

View File

@ -82,6 +82,7 @@ module completions {
--list(-l) # List all matching directories
--score(-s) # Print score with results
--exclude: path # Exclude the current directory
--basedir: path # Only search within this directory
--help(-h) # Print help
--version(-V) # Print version
]

View File

@ -1,6 +1,6 @@
use std::iter::Rev;
use std::ops::Range;
use std::path::{Path, PathBuf};
use std::path::Path;
use std::{fs, path};
use glob::Pattern;