Fix clippy warnings

This commit is contained in:
Charlie Marsh 2022-11-26 15:56:33 -05:00
parent 14cf36f922
commit f38bba18ee
2 changed files with 4 additions and 2 deletions

View File

@ -7,6 +7,7 @@ use std::path::Path;
use anyhow::Result;
#[cfg(not(target_family = "wasm"))]
use log::debug;
use nohash_hasher::IntMap;
use rustpython_parser::lexer::LexResult;
use crate::ast::types::Range;
@ -46,6 +47,7 @@ impl AddAssign for Diagnostics {
/// Generate a list of `Check` violations from the source code contents at the
/// given `Path`.
#[allow(clippy::too_many_arguments)]
pub(crate) fn check_path(
path: &Path,
contents: &str,
@ -252,7 +254,7 @@ pub fn add_noqa_to_path(path: &Path, settings: &Settings) -> Result<usize> {
tokens,
&locator,
&Directives {
noqa_line_for: Default::default(),
noqa_line_for: IntMap::default(),
isort_exclusions: directives.isort_exclusions,
},
settings,

View File

@ -116,7 +116,7 @@ fn add_noqa_inner(
let mut new_line = String::new();
// Add existing content.
new_line.push_str(&line[..start].trim_end());
new_line.push_str(line[..start].trim_end());
// Add `noqa` directive.
new_line.push_str(" # noqa: ");