mirror of https://github.com/mtshiba/pylyzer
remove useless type annotation
This commit is contained in:
parent
03379c6eca
commit
4458efdead
|
|
@ -215,7 +215,7 @@ For more information try `pylyzer --help`"
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn files_to_be_checked() -> Vec<Result<PathBuf, String>> {
|
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);
|
let mut args = env::args().skip(1);
|
||||||
while let Some(arg) = &args.next() {
|
while let Some(arg) = &args.next() {
|
||||||
match arg.as_str() {
|
match arg.as_str() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue