remove useless type annotation

This commit is contained in:
Loïc Riegel 2025-02-23 21:25:48 +01:00
parent 03379c6eca
commit 4458efdead
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ For more information try `pylyzer --help`"
}
pub(crate) fn files_to_be_checked() -> Vec<Result<PathBuf, String>> {
let mut file_or_patterns: Vec<String> = vec![];
let mut file_or_patterns = vec![];
let mut args = env::args().skip(1);
while let Some(arg) = &args.next() {
match arg.as_str() {