Allow diagnostics to generate multi-edit fixes (#3709)

This commit is contained in:
Charlie Marsh 2023-03-26 16:45:19 -04:00 committed by GitHub
parent 32be63fd1e
commit e603382cf0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
731 changed files with 17319 additions and 13447 deletions

1
Cargo.lock generated
View file

@ -2259,6 +2259,7 @@ dependencies = [
"js-sys", "js-sys",
"log", "log",
"ruff", "ruff",
"ruff_diagnostics",
"ruff_python_ast", "ruff_python_ast",
"ruff_rustpython", "ruff_rustpython",
"rustpython-parser", "rustpython-parser",

View file

@ -4,7 +4,7 @@ use itertools::Itertools;
use rustc_hash::FxHashMap; use rustc_hash::FxHashMap;
use rustpython_parser::ast::Location; use rustpython_parser::ast::Location;
use ruff_diagnostics::{Diagnostic, Edit}; use ruff_diagnostics::{Diagnostic, Edit, Fix};
use ruff_python_ast::source_code::Locator; use ruff_python_ast::source_code::Locator;
use ruff_python_ast::types::Range; use ruff_python_ast::types::Range;
@ -15,7 +15,7 @@ pub mod helpers;
/// Auto-fix errors in a file, and write the fixed source code to disk. /// Auto-fix errors in a file, and write the fixed source code to disk.
pub fn fix_file(diagnostics: &[Diagnostic], locator: &Locator) -> Option<(String, FixTable)> { pub fn fix_file(diagnostics: &[Diagnostic], locator: &Locator) -> Option<(String, FixTable)> {
if diagnostics.iter().all(|check| check.fix.is_none()) { if diagnostics.iter().all(|check| check.fix.is_empty()) {
None None
} else { } else {
Some(apply_fixes(diagnostics.iter(), locator)) Some(apply_fixes(diagnostics.iter(), locator))
@ -34,36 +34,43 @@ fn apply_fixes<'a>(
for (rule, fix) in diagnostics for (rule, fix) in diagnostics
.filter_map(|diagnostic| { .filter_map(|diagnostic| {
diagnostic if diagnostic.fix.is_empty() {
.fix None
.as_ref() } else {
.map(|fix| (diagnostic.kind.rule(), fix)) Some((diagnostic.kind.rule(), &diagnostic.fix))
}
}) })
.sorted_by(|(rule1, fix1), (rule2, fix2)| cmp_fix(*rule1, *rule2, fix1, fix2)) .sorted_by(|(rule1, fix1), (rule2, fix2)| cmp_fix(*rule1, *rule2, fix1, fix2))
{ {
// If we already applied an identical fix as part of another correction, skip // If we already applied an identical fix as part of another correction, skip
// any re-application. // any re-application.
if applied.contains(&fix) { if fix.edits().iter().all(|edit| applied.contains(edit)) {
*fixed.entry(rule).or_default() += 1; *fixed.entry(rule).or_default() += 1;
continue; continue;
} }
// Best-effort approach: if this fix overlaps with a fix we've already applied, // Best-effort approach: if this fix overlaps with a fix we've already applied,
// skip it. // skip it.
if last_pos.map_or(false, |last_pos| last_pos >= fix.location) { if last_pos.map_or(false, |last_pos| {
fix.location()
.map_or(false, |fix_location| last_pos >= fix_location)
}) {
continue; continue;
} }
// Add all contents from `last_pos` to `fix.location`. for edit in fix.edits() {
let slice = locator.slice(Range::new(last_pos.unwrap_or_default(), fix.location)); // Add all contents from `last_pos` to `fix.location`.
output.push_str(slice); let slice = locator.slice(Range::new(last_pos.unwrap_or_default(), edit.location));
output.push_str(slice);
// Add the patch itself. // Add the patch itself.
output.push_str(&fix.content); output.push_str(&edit.content);
// Track that the edit was applied.
last_pos = Some(edit.end_location);
applied.insert(edit);
}
// Track that the fix was applied.
last_pos = Some(fix.end_location);
applied.insert(fix);
*fixed.entry(rule).or_default() += 1; *fixed.entry(rule).or_default() += 1;
} }
@ -93,9 +100,9 @@ pub(crate) fn apply_fix(fix: &Edit, locator: &Locator) -> String {
} }
/// Compare two fixes. /// Compare two fixes.
fn cmp_fix(rule1: Rule, rule2: Rule, fix1: &Edit, fix2: &Edit) -> std::cmp::Ordering { fn cmp_fix(rule1: Rule, rule2: Rule, fix1: &Fix, fix2: &Fix) -> std::cmp::Ordering {
fix1.location fix1.location()
.cmp(&fix2.location) .cmp(&fix2.location())
.then_with(|| match (&rule1, &rule2) { .then_with(|| match (&rule1, &rule2) {
// Apply `EndsInPeriod` fixes before `NewLineAfterLastParagraph` fixes. // Apply `EndsInPeriod` fixes before `NewLineAfterLastParagraph` fixes.
(Rule::EndsInPeriod, Rule::NewLineAfterLastParagraph) => std::cmp::Ordering::Less, (Rule::EndsInPeriod, Rule::NewLineAfterLastParagraph) => std::cmp::Ordering::Less,
@ -115,15 +122,14 @@ mod tests {
use crate::autofix::{apply_fix, apply_fixes}; use crate::autofix::{apply_fix, apply_fixes};
use crate::rules::pycodestyle::rules::MissingNewlineAtEndOfFile; use crate::rules::pycodestyle::rules::MissingNewlineAtEndOfFile;
fn create_diagnostics(fixes: impl IntoIterator<Item = Edit>) -> Vec<Diagnostic> { fn create_diagnostics(edit: impl IntoIterator<Item = Edit>) -> Vec<Diagnostic> {
fixes edit.into_iter()
.into_iter() .map(|edit| Diagnostic {
.map(|fix| Diagnostic {
// The choice of rule here is arbitrary. // The choice of rule here is arbitrary.
kind: MissingNewlineAtEndOfFile.into(), kind: MissingNewlineAtEndOfFile.into(),
location: fix.location, location: edit.location,
end_location: fix.end_location, end_location: edit.end_location,
fix: Some(fix), fix: edit.into(),
parent: None, parent: None,
}) })
.collect() .collect()

View file

@ -2455,7 +2455,7 @@ where
pyupgrade::rules::replace_universal_newlines(self, func, keywords); pyupgrade::rules::replace_universal_newlines(self, func, keywords);
} }
if self.settings.rules.enabled(Rule::ReplaceStdoutStderr) { if self.settings.rules.enabled(Rule::ReplaceStdoutStderr) {
pyupgrade::rules::replace_stdout_stderr(self, expr, func, keywords); pyupgrade::rules::replace_stdout_stderr(self, expr, func, args, keywords);
} }
if self.settings.rules.enabled(Rule::OSErrorAlias) { if self.settings.rules.enabled(Rule::OSErrorAlias) {
pyupgrade::rules::os_error_alias_call(self, func); pyupgrade::rules::os_error_alias_call(self, func);

View file

@ -5,7 +5,7 @@ use itertools::Itertools;
use rustpython_parser::ast::Location; use rustpython_parser::ast::Location;
use rustpython_parser::lexer::LexResult; use rustpython_parser::lexer::LexResult;
use ruff_diagnostics::Diagnostic; use ruff_diagnostics::{Diagnostic, Fix};
use ruff_python_ast::source_code::{Locator, Stylist}; use ruff_python_ast::source_code::{Locator, Stylist};
use ruff_python_ast::types::Range; use ruff_python_ast::types::Range;
@ -75,7 +75,7 @@ pub fn check_logical_lines(
kind, kind,
location, location,
end_location: location, end_location: location,
fix: None, fix: Fix::empty(),
parent: None, parent: None,
}); });
} }
@ -93,7 +93,7 @@ pub fn check_logical_lines(
kind, kind,
location, location,
end_location: location, end_location: location,
fix: None, fix: Fix::empty(),
parent: None, parent: None,
}); });
} }
@ -108,7 +108,7 @@ pub fn check_logical_lines(
kind, kind,
location, location,
end_location: location, end_location: location,
fix: None, fix: Fix::empty(),
parent: None, parent: None,
}); });
} }
@ -120,7 +120,7 @@ pub fn check_logical_lines(
kind, kind,
location, location,
end_location: location, end_location: location,
fix: None, fix: Fix::empty(),
parent: None, parent: None,
}); });
} }
@ -133,7 +133,7 @@ pub fn check_logical_lines(
kind, kind,
location: range.location, location: range.location,
end_location: range.end_location, end_location: range.end_location,
fix: None, fix: Fix::empty(),
parent: None, parent: None,
}); });
} }
@ -148,7 +148,7 @@ pub fn check_logical_lines(
kind, kind,
location, location,
end_location: location, end_location: location,
fix: None, fix: Fix::empty(),
parent: None, parent: None,
}); });
} }
@ -159,7 +159,7 @@ pub fn check_logical_lines(
kind, kind,
location, location,
end_location: location, end_location: location,
fix: None, fix: Fix::empty(),
parent: None, parent: None,
}); });
} }
@ -210,7 +210,7 @@ pub fn check_logical_lines(
kind, kind,
location, location,
end_location: location, end_location: location,
fix: None, fix: Fix::empty(),
parent: None, parent: None,
}); });
} }

View file

@ -3,7 +3,7 @@ use std::cmp::Ordering;
pub use rustpython_parser::ast::Location; pub use rustpython_parser::ast::Location;
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use ruff_diagnostics::{Diagnostic, DiagnosticKind, Edit}; use ruff_diagnostics::{Diagnostic, DiagnosticKind, Fix};
use ruff_python_ast::source_code::Locator; use ruff_python_ast::source_code::Locator;
use ruff_python_ast::types::Range; use ruff_python_ast::types::Range;
@ -12,7 +12,7 @@ pub struct Message {
pub kind: DiagnosticKind, pub kind: DiagnosticKind,
pub location: Location, pub location: Location,
pub end_location: Location, pub end_location: Location,
pub fix: Option<Edit>, pub fix: Fix,
pub filename: String, pub filename: String,
pub source: Option<Source>, pub source: Option<Source>,
pub noqa_row: usize, pub noqa_row: usize,

View file

@ -14,13 +14,14 @@ expression: diagnostics
row: 1 row: 1
column: 10 column: 10
fix: fix:
content: "" edits:
location: - content: ""
row: 1 location:
column: 0 row: 1
end_location: column: 0
row: 2 end_location:
column: 0 row: 2
column: 0
parent: ~ parent: ~
- kind: - kind:
name: CommentedOutCode name: CommentedOutCode
@ -34,13 +35,14 @@ expression: diagnostics
row: 2 row: 2
column: 22 column: 22
fix: fix:
content: "" edits:
location: - content: ""
row: 2 location:
column: 0 row: 2
end_location: column: 0
row: 3 end_location:
column: 0 row: 3
column: 0
parent: ~ parent: ~
- kind: - kind:
name: CommentedOutCode name: CommentedOutCode
@ -54,13 +56,14 @@ expression: diagnostics
row: 3 row: 3
column: 6 column: 6
fix: fix:
content: "" edits:
location: - content: ""
row: 3 location:
column: 0 row: 3
end_location: column: 0
row: 4 end_location:
column: 0 row: 4
column: 0
parent: ~ parent: ~
- kind: - kind:
name: CommentedOutCode name: CommentedOutCode
@ -74,13 +77,14 @@ expression: diagnostics
row: 5 row: 5
column: 13 column: 13
fix: fix:
content: "" edits:
location: - content: ""
row: 5 location:
column: 0 row: 5
end_location: column: 0
row: 6 end_location:
column: 0 row: 6
column: 0
parent: ~ parent: ~
- kind: - kind:
name: CommentedOutCode name: CommentedOutCode
@ -94,12 +98,13 @@ expression: diagnostics
row: 12 row: 12
column: 16 column: 16
fix: fix:
content: "" edits:
location: - content: ""
row: 12 location:
column: 0 row: 12
end_location: column: 0
row: 13 end_location:
column: 0 row: 13
column: 0
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 6 row: 6
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SysVersionSlice3 name: SysVersionSlice3
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 7 row: 7
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SysVersionSlice3 name: SysVersionSlice3
@ -39,6 +41,7 @@ expression: diagnostics
end_location: end_location:
row: 8 row: 8
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 22 column: 22
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SysVersion2 name: SysVersion2
@ -26,6 +27,7 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SysVersionCmpStr3 name: SysVersionCmpStr3
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SysVersionCmpStr3 name: SysVersionCmpStr3
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 6 row: 6
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SysVersionCmpStr3 name: SysVersionCmpStr3
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 7 row: 7
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SysVersionCmpStr3 name: SysVersionCmpStr3
@ -65,6 +69,7 @@ expression: diagnostics
end_location: end_location:
row: 8 row: 8
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 7 row: 7
column: 25 column: 25
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SysVersionInfo0Eq3 name: SysVersionInfo0Eq3
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 8 row: 8
column: 21 column: 21
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SysVersionInfo0Eq3 name: SysVersionInfo0Eq3
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 25 column: 25
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SysVersionInfo0Eq3 name: SysVersionInfo0Eq3
@ -52,6 +55,7 @@ expression: diagnostics
end_location: end_location:
row: 10 row: 10
column: 21 column: 21
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 10 column: 10
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SixPY3 name: SixPY3
@ -26,6 +27,7 @@ expression: diagnostics
end_location: end_location:
row: 6 row: 6
column: 6 column: 6
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 19 column: 19
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SysVersionInfo1CmpInt name: SysVersionInfo1CmpInt
@ -26,6 +27,7 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 15 column: 15
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 22 column: 22
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SysVersionInfoMinorCmpInt name: SysVersionInfoMinorCmpInt
@ -26,6 +27,7 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 22 column: 22
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SysVersion0 name: SysVersion0
@ -26,6 +27,7 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SysVersionCmpStr10 name: SysVersionCmpStr10
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SysVersionCmpStr10 name: SysVersionCmpStr10
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 6 row: 6
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SysVersionCmpStr10 name: SysVersionCmpStr10
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 7 row: 7
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SysVersionCmpStr10 name: SysVersionCmpStr10
@ -65,6 +69,7 @@ expression: diagnostics
end_location: end_location:
row: 8 row: 8
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SysVersionSlice1 name: SysVersionSlice1
@ -26,6 +27,7 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,6 +13,7 @@ expression: diagnostics
end_location: end_location:
row: 29 row: 29
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 10 row: 10
column: 14 column: 14
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AnyType name: AnyType
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 15 row: 15
column: 49 column: 49
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AnyType name: AnyType
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 40 row: 40
column: 31 column: 31
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AnyType name: AnyType
@ -52,6 +55,7 @@ expression: diagnostics
end_location: end_location:
row: 44 row: 44
column: 69 column: 69
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MissingTypeFunctionArgument name: MissingTypeFunctionArgument
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 9 column: 9
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MissingTypeFunctionArgument name: MissingTypeFunctionArgument
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeUndocumentedPublicFunction name: MissingReturnTypeUndocumentedPublicFunction
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MissingTypeFunctionArgument name: MissingTypeFunctionArgument
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MissingTypeFunctionArgument name: MissingTypeFunctionArgument
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 14 row: 14
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeUndocumentedPublicFunction name: MissingReturnTypeUndocumentedPublicFunction
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 19 row: 19
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeUndocumentedPublicFunction name: MissingReturnTypeUndocumentedPublicFunction
@ -104,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 24 row: 24
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AnyType name: AnyType
@ -117,7 +125,8 @@ expression: diagnostics
end_location: end_location:
row: 44 row: 44
column: 14 column: 14
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AnyType name: AnyType
@ -130,7 +139,8 @@ expression: diagnostics
end_location: end_location:
row: 49 row: 49
column: 49 column: 49
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AnyType name: AnyType
@ -143,7 +153,8 @@ expression: diagnostics
end_location: end_location:
row: 54 row: 54
column: 26 column: 26
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AnyType name: AnyType
@ -156,7 +167,8 @@ expression: diagnostics
end_location: end_location:
row: 54 row: 54
column: 41 column: 41
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AnyType name: AnyType
@ -169,7 +181,8 @@ expression: diagnostics
end_location: end_location:
row: 59 row: 59
column: 26 column: 26
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AnyType name: AnyType
@ -182,7 +195,8 @@ expression: diagnostics
end_location: end_location:
row: 64 row: 64
column: 41 column: 41
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MissingTypeSelf name: MissingTypeSelf
@ -195,7 +209,8 @@ expression: diagnostics
end_location: end_location:
row: 74 row: 74
column: 16 column: 16
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AnyType name: AnyType
@ -208,7 +223,8 @@ expression: diagnostics
end_location: end_location:
row: 78 row: 78
column: 31 column: 31
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AnyType name: AnyType
@ -221,7 +237,8 @@ expression: diagnostics
end_location: end_location:
row: 82 row: 82
column: 69 column: 69
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AnyType name: AnyType
@ -234,7 +251,8 @@ expression: diagnostics
end_location: end_location:
row: 86 row: 86
column: 45 column: 45
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AnyType name: AnyType
@ -247,7 +265,8 @@ expression: diagnostics
end_location: end_location:
row: 86 row: 86
column: 61 column: 61
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AnyType name: AnyType
@ -260,7 +279,8 @@ expression: diagnostics
end_location: end_location:
row: 90 row: 90
column: 45 column: 45
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AnyType name: AnyType
@ -273,7 +293,8 @@ expression: diagnostics
end_location: end_location:
row: 94 row: 94
column: 61 column: 61
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MissingTypeCls name: MissingTypeCls
@ -286,7 +307,8 @@ expression: diagnostics
end_location: end_location:
row: 104 row: 104
column: 15 column: 15
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MissingTypeSelf name: MissingTypeSelf
@ -299,6 +321,7 @@ expression: diagnostics
end_location: end_location:
row: 108 row: 108
column: 16 column: 16
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 24 row: 24
column: 27 column: 27
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MissingTypeFunctionArgument name: MissingTypeFunctionArgument
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 24 row: 24
column: 37 column: 37
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MissingTypeFunctionArgument name: MissingTypeFunctionArgument
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 28 row: 28
column: 37 column: 37
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeUndocumentedPublicFunction name: MissingReturnTypeUndocumentedPublicFunction
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 32 row: 32
column: 27 column: 27
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeUndocumentedPublicFunction name: MissingReturnTypeUndocumentedPublicFunction
@ -65,6 +69,7 @@ expression: diagnostics
end_location: end_location:
row: 43 row: 43
column: 24 column: 24
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -14,13 +14,14 @@ expression: diagnostics
row: 5 row: 5
column: 16 column: 16
fix: fix:
content: " -> None" edits:
location: - content: " -> None"
row: 5 location:
column: 22 row: 5
end_location: column: 22
row: 5 end_location:
column: 22 row: 5
column: 22
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeSpecialMethod name: MissingReturnTypeSpecialMethod
@ -34,13 +35,14 @@ expression: diagnostics
row: 11 row: 11
column: 16 column: 16
fix: fix:
content: " -> None" edits:
location: - content: " -> None"
row: 11 location:
column: 27 row: 11
end_location: column: 27
row: 11 end_location:
column: 27 row: 11
column: 27
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypePrivateFunction name: MissingReturnTypePrivateFunction
@ -53,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 40 row: 40
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeSpecialMethod name: MissingReturnTypeSpecialMethod
@ -67,12 +70,13 @@ expression: diagnostics
row: 47 row: 47
column: 16 column: 16
fix: fix:
content: " -> None" edits:
location: - content: " -> None"
row: 47 location:
column: 28 row: 47
end_location: column: 28
row: 47 end_location:
column: 28 row: 47
column: 28
parent: ~ parent: ~

View file

@ -14,13 +14,14 @@ expression: diagnostics
row: 2 row: 2
column: 15 column: 15
fix: fix:
content: " -> str" edits:
location: - content: " -> str"
row: 2 location:
column: 21 row: 2
end_location: column: 21
row: 2 end_location:
column: 21 row: 2
column: 21
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeSpecialMethod name: MissingReturnTypeSpecialMethod
@ -34,13 +35,14 @@ expression: diagnostics
row: 5 row: 5
column: 16 column: 16
fix: fix:
content: " -> str" edits:
location: - content: " -> str"
row: 5 location:
column: 22 row: 5
end_location: column: 22
row: 5 end_location:
column: 22 row: 5
column: 22
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeSpecialMethod name: MissingReturnTypeSpecialMethod
@ -54,13 +56,14 @@ expression: diagnostics
row: 8 row: 8
column: 15 column: 15
fix: fix:
content: " -> int" edits:
location: - content: " -> int"
row: 8 location:
column: 21 row: 8
end_location: column: 21
row: 8 end_location:
column: 21 row: 8
column: 21
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeSpecialMethod name: MissingReturnTypeSpecialMethod
@ -74,13 +77,14 @@ expression: diagnostics
row: 11 row: 11
column: 23 column: 23
fix: fix:
content: " -> int" edits:
location: - content: " -> int"
row: 11 location:
column: 29 row: 11
end_location: column: 29
row: 11 end_location:
column: 29 row: 11
column: 29
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeSpecialMethod name: MissingReturnTypeSpecialMethod
@ -94,13 +98,14 @@ expression: diagnostics
row: 14 row: 14
column: 16 column: 16
fix: fix:
content: " -> None" edits:
location: - content: " -> None"
row: 14 location:
column: 22 row: 14
end_location: column: 22
row: 14 end_location:
column: 22 row: 14
column: 22
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeSpecialMethod name: MissingReturnTypeSpecialMethod
@ -114,13 +119,14 @@ expression: diagnostics
row: 17 row: 17
column: 15 column: 15
fix: fix:
content: " -> None" edits:
location: - content: " -> None"
row: 17 location:
column: 21 row: 17
end_location: column: 21
row: 17 end_location:
column: 21 row: 17
column: 21
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeSpecialMethod name: MissingReturnTypeSpecialMethod
@ -134,13 +140,14 @@ expression: diagnostics
row: 20 row: 20
column: 16 column: 16
fix: fix:
content: " -> bool" edits:
location: - content: " -> bool"
row: 20 location:
column: 22 row: 20
end_location: column: 22
row: 20 end_location:
column: 22 row: 20
column: 22
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeSpecialMethod name: MissingReturnTypeSpecialMethod
@ -154,13 +161,14 @@ expression: diagnostics
row: 23 row: 23
column: 17 column: 17
fix: fix:
content: " -> bytes" edits:
location: - content: " -> bytes"
row: 23 location:
column: 23 row: 23
end_location: column: 23
row: 23 end_location:
column: 23 row: 23
column: 23
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeSpecialMethod name: MissingReturnTypeSpecialMethod
@ -174,13 +182,14 @@ expression: diagnostics
row: 26 row: 26
column: 18 column: 18
fix: fix:
content: " -> str" edits:
location: - content: " -> str"
row: 26 location:
column: 37 row: 26
end_location: column: 37
row: 26 end_location:
column: 37 row: 26
column: 37
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeSpecialMethod name: MissingReturnTypeSpecialMethod
@ -194,13 +203,14 @@ expression: diagnostics
row: 29 row: 29
column: 20 column: 20
fix: fix:
content: " -> bool" edits:
location: - content: " -> bool"
row: 29 location:
column: 32 row: 29
end_location: column: 32
row: 29 end_location:
column: 32 row: 29
column: 32
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeSpecialMethod name: MissingReturnTypeSpecialMethod
@ -214,13 +224,14 @@ expression: diagnostics
row: 32 row: 32
column: 19 column: 19
fix: fix:
content: " -> complex" edits:
location: - content: " -> complex"
row: 32 location:
column: 25 row: 32
end_location: column: 25
row: 32 end_location:
column: 25 row: 32
column: 25
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeSpecialMethod name: MissingReturnTypeSpecialMethod
@ -234,13 +245,14 @@ expression: diagnostics
row: 35 row: 35
column: 15 column: 15
fix: fix:
content: " -> int" edits:
location: - content: " -> int"
row: 35 location:
column: 21 row: 35
end_location: column: 21
row: 35 end_location:
column: 21 row: 35
column: 21
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeSpecialMethod name: MissingReturnTypeSpecialMethod
@ -254,13 +266,14 @@ expression: diagnostics
row: 38 row: 38
column: 17 column: 17
fix: fix:
content: " -> float" edits:
location: - content: " -> float"
row: 38 location:
column: 23 row: 38
end_location: column: 23
row: 38 end_location:
column: 23 row: 38
column: 23
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeSpecialMethod name: MissingReturnTypeSpecialMethod
@ -274,12 +287,13 @@ expression: diagnostics
row: 41 row: 41
column: 17 column: 17
fix: fix:
content: " -> int" edits:
location: - content: " -> int"
row: 41 location:
column: 23 row: 41
end_location: column: 23
row: 41 end_location:
column: 23 row: 41
column: 23
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 45 row: 45
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MissingReturnTypeUndocumentedPublicFunction name: MissingReturnTypeUndocumentedPublicFunction
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 50 row: 50
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MissingTypeFunctionArgument name: MissingTypeFunctionArgument
@ -39,6 +41,7 @@ expression: diagnostics
end_location: end_location:
row: 59 row: 59
column: 9 column: 9
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 2 row: 2
column: 6 column: 6
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: Assert name: Assert
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 8 row: 8
column: 10 column: 10
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: Assert name: Assert
@ -39,6 +41,7 @@ expression: diagnostics
end_location: end_location:
row: 11 row: 11
column: 10 column: 10
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 3 row: 3
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: ExecBuiltin name: ExecBuiltin
@ -26,6 +27,7 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 6 row: 6
column: 29 column: 29
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BadFilePermissions name: BadFilePermissions
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 7 row: 7
column: 27 column: 27
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BadFilePermissions name: BadFilePermissions
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 29 column: 29
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BadFilePermissions name: BadFilePermissions
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 10 row: 10
column: 29 column: 29
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BadFilePermissions name: BadFilePermissions
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 11 row: 11
column: 29 column: 29
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BadFilePermissions name: BadFilePermissions
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 13 row: 13
column: 25 column: 25
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BadFilePermissions name: BadFilePermissions
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 14 row: 14
column: 28 column: 28
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BadFilePermissions name: BadFilePermissions
@ -104,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 15 row: 15
column: 29 column: 29
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BadFilePermissions name: BadFilePermissions
@ -117,7 +125,8 @@ expression: diagnostics
end_location: end_location:
row: 17 row: 17
column: 23 column: 23
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BadFilePermissions name: BadFilePermissions
@ -130,7 +139,8 @@ expression: diagnostics
end_location: end_location:
row: 18 row: 18
column: 36 column: 36
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BadFilePermissions name: BadFilePermissions
@ -143,7 +153,8 @@ expression: diagnostics
end_location: end_location:
row: 19 row: 19
column: 60 column: 60
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BadFilePermissions name: BadFilePermissions
@ -156,7 +167,8 @@ expression: diagnostics
end_location: end_location:
row: 20 row: 20
column: 38 column: 38
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BadFilePermissions name: BadFilePermissions
@ -169,6 +181,7 @@ expression: diagnostics
end_location: end_location:
row: 22 row: 22
column: 36 column: 36
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 9 column: 9
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedBindAllInterfaces name: HardcodedBindAllInterfaces
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 10 row: 10
column: 9 column: 9
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedBindAllInterfaces name: HardcodedBindAllInterfaces
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 14 row: 14
column: 14 column: 14
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedBindAllInterfaces name: HardcodedBindAllInterfaces
@ -52,6 +55,7 @@ expression: diagnostics
end_location: end_location:
row: 18 row: 18
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 13 row: 13
column: 19 column: 19
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 14 row: 14
column: 16 column: 16
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 15 row: 15
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 16 row: 16
column: 14 column: 14
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 17 row: 17
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 18 row: 18
column: 16 column: 16
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 19 row: 19
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -104,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 20 row: 20
column: 26 column: 26
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -117,7 +125,8 @@ expression: diagnostics
end_location: end_location:
row: 21 row: 21
column: 26 column: 26
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -130,7 +139,8 @@ expression: diagnostics
end_location: end_location:
row: 22 row: 22
column: 19 column: 19
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -143,7 +153,8 @@ expression: diagnostics
end_location: end_location:
row: 23 row: 23
column: 19 column: 19
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -156,7 +167,8 @@ expression: diagnostics
end_location: end_location:
row: 25 row: 25
column: 24 column: 24
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -169,7 +181,8 @@ expression: diagnostics
end_location: end_location:
row: 26 row: 26
column: 20 column: 20
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -182,7 +195,8 @@ expression: diagnostics
end_location: end_location:
row: 27 row: 27
column: 22 column: 22
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -195,7 +209,8 @@ expression: diagnostics
end_location: end_location:
row: 28 row: 28
column: 19 column: 19
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -208,7 +223,8 @@ expression: diagnostics
end_location: end_location:
row: 29 row: 29
column: 22 column: 22
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -221,7 +237,8 @@ expression: diagnostics
end_location: end_location:
row: 30 row: 30
column: 21 column: 21
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -234,7 +251,8 @@ expression: diagnostics
end_location: end_location:
row: 31 row: 31
column: 23 column: 23
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -247,7 +265,8 @@ expression: diagnostics
end_location: end_location:
row: 32 row: 32
column: 31 column: 31
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -260,7 +279,8 @@ expression: diagnostics
end_location: end_location:
row: 33 row: 33
column: 31 column: 31
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -273,7 +293,8 @@ expression: diagnostics
end_location: end_location:
row: 37 row: 37
column: 23 column: 23
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -286,7 +307,8 @@ expression: diagnostics
end_location: end_location:
row: 41 row: 41
column: 27 column: 27
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -299,7 +321,8 @@ expression: diagnostics
end_location: end_location:
row: 42 row: 42
column: 24 column: 24
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -312,7 +335,8 @@ expression: diagnostics
end_location: end_location:
row: 43 row: 43
column: 25 column: 25
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -325,7 +349,8 @@ expression: diagnostics
end_location: end_location:
row: 44 row: 44
column: 22 column: 22
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -338,7 +363,8 @@ expression: diagnostics
end_location: end_location:
row: 45 row: 45
column: 25 column: 25
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -351,7 +377,8 @@ expression: diagnostics
end_location: end_location:
row: 46 row: 46
column: 24 column: 24
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -364,7 +391,8 @@ expression: diagnostics
end_location: end_location:
row: 47 row: 47
column: 26 column: 26
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -377,7 +405,8 @@ expression: diagnostics
end_location: end_location:
row: 49 row: 49
column: 20 column: 20
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -390,7 +419,8 @@ expression: diagnostics
end_location: end_location:
row: 50 row: 50
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -403,7 +433,8 @@ expression: diagnostics
end_location: end_location:
row: 51 row: 51
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -416,7 +447,8 @@ expression: diagnostics
end_location: end_location:
row: 52 row: 52
column: 15 column: 15
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -429,7 +461,8 @@ expression: diagnostics
end_location: end_location:
row: 53 row: 53
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -442,7 +475,8 @@ expression: diagnostics
end_location: end_location:
row: 54 row: 54
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -455,7 +489,8 @@ expression: diagnostics
end_location: end_location:
row: 55 row: 55
column: 19 column: 19
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -468,7 +503,8 @@ expression: diagnostics
end_location: end_location:
row: 56 row: 56
column: 28 column: 28
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -481,7 +517,8 @@ expression: diagnostics
end_location: end_location:
row: 58 row: 58
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -494,7 +531,8 @@ expression: diagnostics
end_location: end_location:
row: 61 row: 61
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordString name: HardcodedPasswordString
@ -507,6 +545,7 @@ expression: diagnostics
end_location: end_location:
row: 64 row: 64
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,6 +13,7 @@ expression: diagnostics
end_location: end_location:
row: 14 row: 14
column: 25 column: 25
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 37 column: 37
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordDefault name: HardcodedPasswordDefault
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 13 row: 13
column: 53 column: 53
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordDefault name: HardcodedPasswordDefault
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 21 row: 21
column: 46 column: 46
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordDefault name: HardcodedPasswordDefault
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 29 row: 29
column: 47 column: 47
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedPasswordDefault name: HardcodedPasswordDefault
@ -65,6 +69,7 @@ expression: diagnostics
end_location: end_location:
row: 29 row: 29
column: 69 column: 69
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 20 column: 20
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedTempFile name: HardcodedTempFile
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 8 row: 8
column: 24 column: 24
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedTempFile name: HardcodedTempFile
@ -39,6 +41,7 @@ expression: diagnostics
end_location: end_location:
row: 11 row: 11
column: 30 column: 30
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 20 column: 20
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedTempFile name: HardcodedTempFile
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 8 row: 8
column: 24 column: 24
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedTempFile name: HardcodedTempFile
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 11 row: 11
column: 30 column: 30
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedTempFile name: HardcodedTempFile
@ -52,6 +55,7 @@ expression: diagnostics
end_location: end_location:
row: 15 row: 15
column: 20 column: 20
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: TryExceptPass name: TryExceptPass
@ -26,6 +27,7 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: TryExceptPass name: TryExceptPass
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: TryExceptPass name: TryExceptPass
@ -39,6 +41,7 @@ expression: diagnostics
end_location: end_location:
row: 14 row: 14
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: TryExceptContinue name: TryExceptContinue
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: TryExceptContinue name: TryExceptContinue
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 14 row: 14
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: TryExceptContinue name: TryExceptContinue
@ -52,6 +55,7 @@ expression: diagnostics
end_location: end_location:
row: 19 row: 19
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 3 row: 3
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithoutTimeout name: RequestWithoutTimeout
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 46 column: 46
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithoutTimeout name: RequestWithoutTimeout
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 6 row: 6
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithoutTimeout name: RequestWithoutTimeout
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 7 row: 7
column: 47 column: 47
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithoutTimeout name: RequestWithoutTimeout
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithoutTimeout name: RequestWithoutTimeout
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 10 row: 10
column: 46 column: 46
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithoutTimeout name: RequestWithoutTimeout
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 12 row: 12
column: 15 column: 15
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithoutTimeout name: RequestWithoutTimeout
@ -104,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 13 row: 13
column: 49 column: 49
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithoutTimeout name: RequestWithoutTimeout
@ -117,7 +125,8 @@ expression: diagnostics
end_location: end_location:
row: 15 row: 15
column: 14 column: 14
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithoutTimeout name: RequestWithoutTimeout
@ -130,7 +139,8 @@ expression: diagnostics
end_location: end_location:
row: 16 row: 16
column: 48 column: 48
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithoutTimeout name: RequestWithoutTimeout
@ -143,7 +153,8 @@ expression: diagnostics
end_location: end_location:
row: 18 row: 18
column: 16 column: 16
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithoutTimeout name: RequestWithoutTimeout
@ -156,7 +167,8 @@ expression: diagnostics
end_location: end_location:
row: 19 row: 19
column: 50 column: 50
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithoutTimeout name: RequestWithoutTimeout
@ -169,7 +181,8 @@ expression: diagnostics
end_location: end_location:
row: 21 row: 21
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithoutTimeout name: RequestWithoutTimeout
@ -182,6 +195,7 @@ expression: diagnostics
end_location: end_location:
row: 22 row: 22
column: 47 column: 47
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,6 +13,7 @@ expression: diagnostics
end_location: end_location:
row: 3 row: 3
column: 14 column: 14
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,6 +13,7 @@ expression: diagnostics
end_location: end_location:
row: 3 row: 3
column: 23 column: 23
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 7 row: 7
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HashlibInsecureHashFunction name: HashlibInsecureHashFunction
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HashlibInsecureHashFunction name: HashlibInsecureHashFunction
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 11 row: 11
column: 22 column: 22
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HashlibInsecureHashFunction name: HashlibInsecureHashFunction
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 13 row: 13
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HashlibInsecureHashFunction name: HashlibInsecureHashFunction
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 15 row: 15
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HashlibInsecureHashFunction name: HashlibInsecureHashFunction
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 17 row: 17
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HashlibInsecureHashFunction name: HashlibInsecureHashFunction
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 19 row: 19
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HashlibInsecureHashFunction name: HashlibInsecureHashFunction
@ -104,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 21 row: 21
column: 22 column: 22
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HashlibInsecureHashFunction name: HashlibInsecureHashFunction
@ -117,7 +125,8 @@ expression: diagnostics
end_location: end_location:
row: 23 row: 23
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HashlibInsecureHashFunction name: HashlibInsecureHashFunction
@ -130,7 +139,8 @@ expression: diagnostics
end_location: end_location:
row: 25 row: 25
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HashlibInsecureHashFunction name: HashlibInsecureHashFunction
@ -143,7 +153,8 @@ expression: diagnostics
end_location: end_location:
row: 27 row: 27
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HashlibInsecureHashFunction name: HashlibInsecureHashFunction
@ -156,7 +167,8 @@ expression: diagnostics
end_location: end_location:
row: 29 row: 29
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HashlibInsecureHashFunction name: HashlibInsecureHashFunction
@ -169,6 +181,7 @@ expression: diagnostics
end_location: end_location:
row: 32 row: 32
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 58 column: 58
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithNoCertValidation name: RequestWithNoCertValidation
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 7 row: 7
column: 59 column: 59
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithNoCertValidation name: RequestWithNoCertValidation
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 58 column: 58
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithNoCertValidation name: RequestWithNoCertValidation
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 11 row: 11
column: 61 column: 61
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithNoCertValidation name: RequestWithNoCertValidation
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 13 row: 13
column: 60 column: 60
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithNoCertValidation name: RequestWithNoCertValidation
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 15 row: 15
column: 62 column: 62
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithNoCertValidation name: RequestWithNoCertValidation
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 17 row: 17
column: 59 column: 59
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithNoCertValidation name: RequestWithNoCertValidation
@ -104,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 20 row: 20
column: 54 column: 54
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithNoCertValidation name: RequestWithNoCertValidation
@ -117,7 +125,8 @@ expression: diagnostics
end_location: end_location:
row: 22 row: 22
column: 43 column: 43
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithNoCertValidation name: RequestWithNoCertValidation
@ -130,7 +139,8 @@ expression: diagnostics
end_location: end_location:
row: 24 row: 24
column: 47 column: 47
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithNoCertValidation name: RequestWithNoCertValidation
@ -143,7 +153,8 @@ expression: diagnostics
end_location: end_location:
row: 26 row: 26
column: 44 column: 44
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithNoCertValidation name: RequestWithNoCertValidation
@ -156,7 +167,8 @@ expression: diagnostics
end_location: end_location:
row: 28 row: 28
column: 44 column: 44
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithNoCertValidation name: RequestWithNoCertValidation
@ -169,7 +181,8 @@ expression: diagnostics
end_location: end_location:
row: 30 row: 30
column: 43 column: 43
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithNoCertValidation name: RequestWithNoCertValidation
@ -182,7 +195,8 @@ expression: diagnostics
end_location: end_location:
row: 32 row: 32
column: 45 column: 45
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithNoCertValidation name: RequestWithNoCertValidation
@ -195,7 +209,8 @@ expression: diagnostics
end_location: end_location:
row: 34 row: 34
column: 46 column: 46
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithNoCertValidation name: RequestWithNoCertValidation
@ -208,7 +223,8 @@ expression: diagnostics
end_location: end_location:
row: 36 row: 36
column: 46 column: 46
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithNoCertValidation name: RequestWithNoCertValidation
@ -221,7 +237,8 @@ expression: diagnostics
end_location: end_location:
row: 38 row: 38
column: 25 column: 25
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RequestWithNoCertValidation name: RequestWithNoCertValidation
@ -234,6 +251,7 @@ expression: diagnostics
end_location: end_location:
row: 40 row: 40
column: 30 column: 30
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 10 row: 10
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UnsafeYAMLLoad name: UnsafeYAMLLoad
@ -26,6 +27,7 @@ expression: diagnostics
end_location: end_location:
row: 24 row: 24
column: 34 column: 34
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 3 row: 3
column: 33 column: 33
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SnmpInsecureVersion name: SnmpInsecureVersion
@ -26,6 +27,7 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 33 column: 33
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 22 column: 22
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: SnmpWeakCryptography name: SnmpWeakCryptography
@ -26,6 +27,7 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 26 column: 26
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 2 row: 2
column: 40 column: 40
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 3 row: 3
column: 35 column: 35
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 43 column: 43
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 44 column: 44
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 6 row: 6
column: 49 column: 49
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 8 row: 8
column: 52 column: 52
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 47 column: 47
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -104,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 10 row: 10
column: 54 column: 54
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -117,7 +125,8 @@ expression: diagnostics
end_location: end_location:
row: 11 row: 11
column: 55 column: 55
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -130,7 +139,8 @@ expression: diagnostics
end_location: end_location:
row: 12 row: 12
column: 48 column: 48
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -143,7 +153,8 @@ expression: diagnostics
end_location: end_location:
row: 14 row: 14
column: 50 column: 50
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -156,7 +167,8 @@ expression: diagnostics
end_location: end_location:
row: 15 row: 15
column: 50 column: 50
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -169,7 +181,8 @@ expression: diagnostics
end_location: end_location:
row: 16 row: 16
column: 57 column: 57
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -182,7 +195,8 @@ expression: diagnostics
end_location: end_location:
row: 17 row: 17
column: 51 column: 51
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -195,7 +209,8 @@ expression: diagnostics
end_location: end_location:
row: 19 row: 19
column: 49 column: 49
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -208,7 +223,8 @@ expression: diagnostics
end_location: end_location:
row: 20 row: 20
column: 49 column: 49
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -221,7 +237,8 @@ expression: diagnostics
end_location: end_location:
row: 21 row: 21
column: 53 column: 53
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -234,7 +251,8 @@ expression: diagnostics
end_location: end_location:
row: 22 row: 22
column: 43 column: 43
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -247,7 +265,8 @@ expression: diagnostics
end_location: end_location:
row: 24 row: 24
column: 41 column: 41
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -260,7 +279,8 @@ expression: diagnostics
end_location: end_location:
row: 25 row: 25
column: 36 column: 36
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -273,7 +293,8 @@ expression: diagnostics
end_location: end_location:
row: 26 row: 26
column: 44 column: 44
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -286,7 +307,8 @@ expression: diagnostics
end_location: end_location:
row: 27 row: 27
column: 45 column: 45
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -299,7 +321,8 @@ expression: diagnostics
end_location: end_location:
row: 28 row: 28
column: 50 column: 50
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -312,7 +335,8 @@ expression: diagnostics
end_location: end_location:
row: 30 row: 30
column: 53 column: 53
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -325,7 +349,8 @@ expression: diagnostics
end_location: end_location:
row: 31 row: 31
column: 48 column: 48
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -338,7 +363,8 @@ expression: diagnostics
end_location: end_location:
row: 32 row: 32
column: 55 column: 55
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -351,7 +377,8 @@ expression: diagnostics
end_location: end_location:
row: 33 row: 33
column: 56 column: 56
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -364,7 +391,8 @@ expression: diagnostics
end_location: end_location:
row: 34 row: 34
column: 48 column: 48
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -377,7 +405,8 @@ expression: diagnostics
end_location: end_location:
row: 36 row: 36
column: 50 column: 50
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -390,7 +419,8 @@ expression: diagnostics
end_location: end_location:
row: 37 row: 37
column: 50 column: 50
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -403,7 +433,8 @@ expression: diagnostics
end_location: end_location:
row: 38 row: 38
column: 57 column: 57
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -416,7 +447,8 @@ expression: diagnostics
end_location: end_location:
row: 39 row: 39
column: 51 column: 51
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -429,7 +461,8 @@ expression: diagnostics
end_location: end_location:
row: 41 row: 41
column: 49 column: 49
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -442,7 +475,8 @@ expression: diagnostics
end_location: end_location:
row: 42 row: 42
column: 49 column: 49
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -455,7 +489,8 @@ expression: diagnostics
end_location: end_location:
row: 43 row: 43
column: 53 column: 53
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -468,7 +503,8 @@ expression: diagnostics
end_location: end_location:
row: 44 row: 44
column: 43 column: 43
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -481,7 +517,8 @@ expression: diagnostics
end_location: end_location:
row: 52 row: 52
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -494,7 +531,8 @@ expression: diagnostics
end_location: end_location:
row: 59 row: 59
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -507,7 +545,8 @@ expression: diagnostics
end_location: end_location:
row: 66 row: 66
column: 19 column: 19
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -520,7 +559,8 @@ expression: diagnostics
end_location: end_location:
row: 73 row: 73
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -533,7 +573,8 @@ expression: diagnostics
end_location: end_location:
row: 79 row: 79
column: 28 column: 28
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -546,7 +587,8 @@ expression: diagnostics
end_location: end_location:
row: 83 row: 83
column: 67 column: 67
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -559,7 +601,8 @@ expression: diagnostics
end_location: end_location:
row: 84 row: 84
column: 65 column: 65
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -572,7 +615,8 @@ expression: diagnostics
end_location: end_location:
row: 85 row: 85
column: 73 column: 73
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: HardcodedSQLExpression name: HardcodedSQLExpression
@ -585,6 +629,7 @@ expression: diagnostics
end_location: end_location:
row: 86 row: 86
column: 71 column: 71
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,6 +13,7 @@ expression: diagnostics
end_location: end_location:
row: 3 row: 3
column: 25 column: 25
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 76 column: 76
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: Jinja2AutoescapeFalse name: Jinja2AutoescapeFalse
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 10 row: 10
column: 49 column: 49
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: Jinja2AutoescapeFalse name: Jinja2AutoescapeFalse
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 13 row: 13
column: 28 column: 28
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: Jinja2AutoescapeFalse name: Jinja2AutoescapeFalse
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 15 row: 15
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: Jinja2AutoescapeFalse name: Jinja2AutoescapeFalse
@ -65,6 +69,7 @@ expression: diagnostics
end_location: end_location:
row: 29 row: 29
column: 57 column: 57
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 25 row: 25
column: 20 column: 20
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BlindExcept name: BlindExcept
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 31 row: 31
column: 16 column: 16
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BlindExcept name: BlindExcept
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 42 row: 42
column: 16 column: 16
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BlindExcept name: BlindExcept
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 45 row: 45
column: 24 column: 24
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BlindExcept name: BlindExcept
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 54 row: 54
column: 16 column: 16
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BlindExcept name: BlindExcept
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 60 row: 60
column: 16 column: 16
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BlindExcept name: BlindExcept
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 62 row: 62
column: 20 column: 20
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BlindExcept name: BlindExcept
@ -104,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 69 row: 69
column: 16 column: 16
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BlindExcept name: BlindExcept
@ -117,7 +125,8 @@ expression: diagnostics
end_location: end_location:
row: 75 row: 75
column: 16 column: 16
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BlindExcept name: BlindExcept
@ -130,6 +139,7 @@ expression: diagnostics
end_location: end_location:
row: 81 row: 81
column: 16 column: 16
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 26 column: 26
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BooleanPositionalArgInFunctionDefinition name: BooleanPositionalArgInFunctionDefinition
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 31 column: 31
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BooleanPositionalArgInFunctionDefinition name: BooleanPositionalArgInFunctionDefinition
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 10 row: 10
column: 36 column: 36
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BooleanPositionalArgInFunctionDefinition name: BooleanPositionalArgInFunctionDefinition
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 11 row: 11
column: 41 column: 41
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BooleanPositionalArgInFunctionDefinition name: BooleanPositionalArgInFunctionDefinition
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 14 row: 14
column: 37 column: 37
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BooleanPositionalArgInFunctionDefinition name: BooleanPositionalArgInFunctionDefinition
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 15 row: 15
column: 42 column: 42
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BooleanPositionalArgInFunctionDefinition name: BooleanPositionalArgInFunctionDefinition
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 18 row: 18
column: 40 column: 40
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BooleanPositionalArgInFunctionDefinition name: BooleanPositionalArgInFunctionDefinition
@ -104,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 19 row: 19
column: 45 column: 45
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BooleanPositionalArgInFunctionDefinition name: BooleanPositionalArgInFunctionDefinition
@ -117,6 +125,7 @@ expression: diagnostics
end_location: end_location:
row: 81 row: 81
column: 29 column: 29
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 12 row: 12
column: 34 column: 34
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BooleanDefaultValueInFunctionDefinition name: BooleanDefaultValueInFunctionDefinition
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 13 row: 13
column: 46 column: 46
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BooleanDefaultValueInFunctionDefinition name: BooleanDefaultValueInFunctionDefinition
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 14 row: 14
column: 44 column: 44
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BooleanDefaultValueInFunctionDefinition name: BooleanDefaultValueInFunctionDefinition
@ -52,6 +55,7 @@ expression: diagnostics
end_location: end_location:
row: 15 row: 15
column: 49 column: 49
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 42 row: 42
column: 14 column: 14
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BooleanPositionalValueInFunctionCall name: BooleanPositionalValueInFunctionCall
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 57 row: 57
column: 14 column: 14
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BooleanPositionalValueInFunctionCall name: BooleanPositionalValueInFunctionCall
@ -39,6 +41,7 @@ expression: diagnostics
end_location: end_location:
row: 57 row: 57
column: 21 column: 21
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 15 row: 15
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UnaryPrefixIncrement name: UnaryPrefixIncrement
@ -26,6 +27,7 @@ expression: diagnostics
end_location: end_location:
row: 20 row: 20
column: 14 column: 14
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,6 +13,7 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 10 column: 10
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 3 row: 3
column: 29 column: 29
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UnreliableCallableCheck name: UnreliableCallableCheck
@ -26,6 +27,7 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 36 column: 36
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 24 column: 24
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: StripWithMultiCharacters name: StripWithMultiCharacters
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 7 row: 7
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: StripWithMultiCharacters name: StripWithMultiCharacters
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 10 row: 10
column: 25 column: 25
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: StripWithMultiCharacters name: StripWithMultiCharacters
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 13 row: 13
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: StripWithMultiCharacters name: StripWithMultiCharacters
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 16 row: 16
column: 25 column: 25
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: StripWithMultiCharacters name: StripWithMultiCharacters
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 19 row: 19
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: StripWithMultiCharacters name: StripWithMultiCharacters
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 22 row: 22
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: StripWithMultiCharacters name: StripWithMultiCharacters
@ -104,6 +111,7 @@ expression: diagnostics
end_location: end_location:
row: 24 row: 24
column: 35 column: 35
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 60 row: 60
column: 33 column: 33
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MutableArgumentDefault name: MutableArgumentDefault
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 64 row: 64
column: 31 column: 31
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MutableArgumentDefault name: MutableArgumentDefault
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 68 row: 68
column: 24 column: 24
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MutableArgumentDefault name: MutableArgumentDefault
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 72 row: 72
column: 44 column: 44
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MutableArgumentDefault name: MutableArgumentDefault
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 76 row: 76
column: 56 column: 56
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MutableArgumentDefault name: MutableArgumentDefault
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 80 row: 80
column: 44 column: 44
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MutableArgumentDefault name: MutableArgumentDefault
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 85 row: 85
column: 69 column: 69
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MutableArgumentDefault name: MutableArgumentDefault
@ -104,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 89 row: 89
column: 72 column: 72
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MutableArgumentDefault name: MutableArgumentDefault
@ -117,7 +125,8 @@ expression: diagnostics
end_location: end_location:
row: 93 row: 93
column: 68 column: 68
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MutableArgumentDefault name: MutableArgumentDefault
@ -130,7 +139,8 @@ expression: diagnostics
end_location: end_location:
row: 97 row: 97
column: 34 column: 34
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MutableArgumentDefault name: MutableArgumentDefault
@ -143,7 +153,8 @@ expression: diagnostics
end_location: end_location:
row: 170 row: 170
column: 48 column: 48
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MutableArgumentDefault name: MutableArgumentDefault
@ -156,7 +167,8 @@ expression: diagnostics
end_location: end_location:
row: 203 row: 203
column: 28 column: 28
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MutableArgumentDefault name: MutableArgumentDefault
@ -169,7 +181,8 @@ expression: diagnostics
end_location: end_location:
row: 204 row: 204
column: 36 column: 36
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MutableArgumentDefault name: MutableArgumentDefault
@ -182,6 +195,7 @@ expression: diagnostics
end_location: end_location:
row: 205 row: 205
column: 66 column: 66
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 6 row: 6
column: 5 column: 5
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UnusedLoopControlVariable name: UnusedLoopControlVariable
@ -27,13 +28,14 @@ expression: diagnostics
row: 18 row: 18
column: 13 column: 13
fix: fix:
content: _k edits:
location: - content: _k
row: 18 location:
column: 12 row: 18
end_location: column: 12
row: 18 end_location:
column: 13 row: 18
column: 13
parent: ~ parent: ~
- kind: - kind:
name: UnusedLoopControlVariable name: UnusedLoopControlVariable
@ -46,7 +48,8 @@ expression: diagnostics
end_location: end_location:
row: 30 row: 30
column: 5 column: 5
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UnusedLoopControlVariable name: UnusedLoopControlVariable
@ -60,13 +63,14 @@ expression: diagnostics
row: 30 row: 30
column: 13 column: 13
fix: fix:
content: _k edits:
location: - content: _k
row: 30 location:
column: 12 row: 30
end_location: column: 12
row: 30 end_location:
column: 13 row: 30
column: 13
parent: ~ parent: ~
- kind: - kind:
name: UnusedLoopControlVariable name: UnusedLoopControlVariable
@ -79,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 34 row: 34
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UnusedLoopControlVariable name: UnusedLoopControlVariable
@ -92,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 38 row: 38
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UnusedLoopControlVariable name: UnusedLoopControlVariable
@ -105,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 42 row: 42
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UnusedLoopControlVariable name: UnusedLoopControlVariable
@ -118,7 +125,8 @@ expression: diagnostics
end_location: end_location:
row: 46 row: 46
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UnusedLoopControlVariable name: UnusedLoopControlVariable
@ -132,13 +140,14 @@ expression: diagnostics
row: 52 row: 52
column: 16 column: 16
fix: fix:
content: _bar edits:
location: - content: _bar
row: 52 location:
column: 13 row: 52
end_location: column: 13
row: 52 end_location:
column: 16 row: 52
column: 16
parent: ~ parent: ~
- kind: - kind:
name: UnusedLoopControlVariable name: UnusedLoopControlVariable
@ -151,7 +160,8 @@ expression: diagnostics
end_location: end_location:
row: 59 row: 59
column: 16 column: 16
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UnusedLoopControlVariable name: UnusedLoopControlVariable
@ -165,13 +175,14 @@ expression: diagnostics
row: 68 row: 68
column: 16 column: 16
fix: fix:
content: _bar edits:
location: - content: _bar
row: 68 location:
column: 13 row: 68
end_location: column: 13
row: 68 end_location:
column: 16 row: 68
column: 16
parent: ~ parent: ~
- kind: - kind:
name: UnusedLoopControlVariable name: UnusedLoopControlVariable
@ -185,13 +196,14 @@ expression: diagnostics
row: 77 row: 77
column: 16 column: 16
fix: fix:
content: _bar edits:
location: - content: _bar
row: 77 location:
column: 13 row: 77
end_location: column: 13
row: 77 end_location:
column: 16 row: 77
column: 16
parent: ~ parent: ~
- kind: - kind:
name: UnusedLoopControlVariable name: UnusedLoopControlVariable
@ -204,6 +216,7 @@ expression: diagnostics
end_location: end_location:
row: 87 row: 87
column: 9 column: 9
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 85 row: 85
column: 68 column: 68
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionCallInDefaultArgument name: FunctionCallInDefaultArgument
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 89 row: 89
column: 71 column: 71
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionCallInDefaultArgument name: FunctionCallInDefaultArgument
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 93 row: 93
column: 67 column: 67
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionCallInDefaultArgument name: FunctionCallInDefaultArgument
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 109 row: 109
column: 49 column: 49
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionCallInDefaultArgument name: FunctionCallInDefaultArgument
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 113 row: 113
column: 28 column: 28
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionCallInDefaultArgument name: FunctionCallInDefaultArgument
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 113 row: 113
column: 51 column: 51
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionCallInDefaultArgument name: FunctionCallInDefaultArgument
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 117 row: 117
column: 44 column: 44
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionCallInDefaultArgument name: FunctionCallInDefaultArgument
@ -104,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 155 row: 155
column: 47 column: 47
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionCallInDefaultArgument name: FunctionCallInDefaultArgument
@ -117,7 +125,8 @@ expression: diagnostics
end_location: end_location:
row: 160 row: 160
column: 37 column: 37
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionCallInDefaultArgument name: FunctionCallInDefaultArgument
@ -130,7 +139,8 @@ expression: diagnostics
end_location: end_location:
row: 164 row: 164
column: 57 column: 57
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionCallInDefaultArgument name: FunctionCallInDefaultArgument
@ -143,7 +153,8 @@ expression: diagnostics
end_location: end_location:
row: 170 row: 170
column: 28 column: 28
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionCallInDefaultArgument name: FunctionCallInDefaultArgument
@ -156,7 +167,8 @@ expression: diagnostics
end_location: end_location:
row: 170 row: 170
column: 47 column: 47
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionCallInDefaultArgument name: FunctionCallInDefaultArgument
@ -169,7 +181,8 @@ expression: diagnostics
end_location: end_location:
row: 176 row: 176
column: 62 column: 62
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionCallInDefaultArgument name: FunctionCallInDefaultArgument
@ -182,7 +195,8 @@ expression: diagnostics
end_location: end_location:
row: 181 row: 181
column: 59 column: 59
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionCallInDefaultArgument name: FunctionCallInDefaultArgument
@ -195,6 +209,7 @@ expression: diagnostics
end_location: end_location:
row: 181 row: 181
column: 53 column: 53
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -14,13 +14,14 @@ expression: diagnostics
row: 19 row: 19
column: 19 column: 19
fix: fix:
content: foo.bar edits:
location: - content: foo.bar
row: 19 location:
column: 0 row: 19
end_location: column: 0
row: 19 end_location:
column: 19 row: 19
column: 19
parent: ~ parent: ~
- kind: - kind:
name: GetAttrWithConstant name: GetAttrWithConstant
@ -34,13 +35,14 @@ expression: diagnostics
row: 20 row: 20
column: 23 column: 23
fix: fix:
content: foo._123abc edits:
location: - content: foo._123abc
row: 20 location:
column: 0 row: 20
end_location: column: 0
row: 20 end_location:
column: 23 row: 20
column: 23
parent: ~ parent: ~
- kind: - kind:
name: GetAttrWithConstant name: GetAttrWithConstant
@ -54,13 +56,14 @@ expression: diagnostics
row: 21 row: 21
column: 26 column: 26
fix: fix:
content: foo.__123abc__ edits:
location: - content: foo.__123abc__
row: 21 location:
column: 0 row: 21
end_location: column: 0
row: 21 end_location:
column: 26 row: 21
column: 26
parent: ~ parent: ~
- kind: - kind:
name: GetAttrWithConstant name: GetAttrWithConstant
@ -74,13 +77,14 @@ expression: diagnostics
row: 22 row: 22
column: 22 column: 22
fix: fix:
content: foo.abc123 edits:
location: - content: foo.abc123
row: 22 location:
column: 0 row: 22
end_location: column: 0
row: 22 end_location:
column: 22 row: 22
column: 22
parent: ~ parent: ~
- kind: - kind:
name: GetAttrWithConstant name: GetAttrWithConstant
@ -94,13 +98,14 @@ expression: diagnostics
row: 23 row: 23
column: 23 column: 23
fix: fix:
content: foo.abc123 edits:
location: - content: foo.abc123
row: 23 location:
column: 0 row: 23
end_location: column: 0
row: 23 end_location:
column: 23 row: 23
column: 23
parent: ~ parent: ~
- kind: - kind:
name: GetAttrWithConstant name: GetAttrWithConstant
@ -114,13 +119,14 @@ expression: diagnostics
row: 24 row: 24
column: 31 column: 31
fix: fix:
content: x.bar edits:
location: - content: x.bar
row: 24 location:
column: 14 row: 24
end_location: column: 14
row: 24 end_location:
column: 31 row: 24
column: 31
parent: ~ parent: ~
- kind: - kind:
name: GetAttrWithConstant name: GetAttrWithConstant
@ -134,12 +140,13 @@ expression: diagnostics
row: 25 row: 25
column: 20 column: 20
fix: fix:
content: x.bar edits:
location: - content: x.bar
row: 25 location:
column: 3 row: 25
end_location: column: 3
row: 25 end_location:
column: 20 row: 25
column: 20
parent: ~ parent: ~

View file

@ -14,13 +14,14 @@ expression: diagnostics
row: 40 row: 40
column: 25 column: 25
fix: fix:
content: foo.bar = None edits:
location: - content: foo.bar = None
row: 40 location:
column: 0 row: 40
end_location: column: 0
row: 40 end_location:
column: 25 row: 40
column: 25
parent: ~ parent: ~
- kind: - kind:
name: SetAttrWithConstant name: SetAttrWithConstant
@ -34,13 +35,14 @@ expression: diagnostics
row: 41 row: 41
column: 29 column: 29
fix: fix:
content: foo._123abc = None edits:
location: - content: foo._123abc = None
row: 41 location:
column: 0 row: 41
end_location: column: 0
row: 41 end_location:
column: 29 row: 41
column: 29
parent: ~ parent: ~
- kind: - kind:
name: SetAttrWithConstant name: SetAttrWithConstant
@ -54,13 +56,14 @@ expression: diagnostics
row: 42 row: 42
column: 32 column: 32
fix: fix:
content: foo.__123abc__ = None edits:
location: - content: foo.__123abc__ = None
row: 42 location:
column: 0 row: 42
end_location: column: 0
row: 42 end_location:
column: 32 row: 42
column: 32
parent: ~ parent: ~
- kind: - kind:
name: SetAttrWithConstant name: SetAttrWithConstant
@ -74,13 +77,14 @@ expression: diagnostics
row: 43 row: 43
column: 28 column: 28
fix: fix:
content: foo.abc123 = None edits:
location: - content: foo.abc123 = None
row: 43 location:
column: 0 row: 43
end_location: column: 0
row: 43 end_location:
column: 28 row: 43
column: 28
parent: ~ parent: ~
- kind: - kind:
name: SetAttrWithConstant name: SetAttrWithConstant
@ -94,13 +98,14 @@ expression: diagnostics
row: 44 row: 44
column: 29 column: 29
fix: fix:
content: foo.abc123 = None edits:
location: - content: foo.abc123 = None
row: 44 location:
column: 0 row: 44
end_location: column: 0
row: 44 end_location:
column: 29 row: 44
column: 29
parent: ~ parent: ~
- kind: - kind:
name: SetAttrWithConstant name: SetAttrWithConstant
@ -114,12 +119,13 @@ expression: diagnostics
row: 45 row: 45
column: 30 column: 30
fix: fix:
content: foo.bar.baz = None edits:
location: - content: foo.bar.baz = None
row: 45 location:
column: 0 row: 45
end_location: column: 0
row: 45 end_location:
column: 30 row: 45
column: 30
parent: ~ parent: ~

View file

@ -14,13 +14,14 @@ expression: diagnostics
row: 8 row: 8
column: 12 column: 12
fix: fix:
content: raise AssertionError() edits:
location: - content: raise AssertionError()
row: 8 location:
column: 0 row: 8
end_location: column: 0
row: 8 end_location:
column: 12 row: 8
column: 12
parent: ~ parent: ~
- kind: - kind:
name: AssertFalse name: AssertFalse
@ -34,12 +35,13 @@ expression: diagnostics
row: 10 row: 10
column: 12 column: 12
fix: fix:
content: "raise AssertionError(\"message\")" edits:
location: - content: "raise AssertionError(\"message\")"
row: 10 location:
column: 0 row: 10
end_location: column: 0
row: 10 end_location:
column: 23 row: 10
column: 23
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 14 column: 14
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: JumpStatementInFinally name: JumpStatementInFinally
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 13 row: 13
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: JumpStatementInFinally name: JumpStatementInFinally
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 21 row: 21
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: JumpStatementInFinally name: JumpStatementInFinally
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 31 row: 31
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: JumpStatementInFinally name: JumpStatementInFinally
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 44 row: 44
column: 26 column: 26
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: JumpStatementInFinally name: JumpStatementInFinally
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 66 row: 66
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: JumpStatementInFinally name: JumpStatementInFinally
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 78 row: 78
column: 20 column: 20
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: JumpStatementInFinally name: JumpStatementInFinally
@ -104,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 94 row: 94
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: JumpStatementInFinally name: JumpStatementInFinally
@ -117,7 +125,8 @@ expression: diagnostics
end_location: end_location:
row: 101 row: 101
column: 16 column: 16
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: JumpStatementInFinally name: JumpStatementInFinally
@ -130,7 +139,8 @@ expression: diagnostics
end_location: end_location:
row: 107 row: 107
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: JumpStatementInFinally name: JumpStatementInFinally
@ -143,6 +153,7 @@ expression: diagnostics
end_location: end_location:
row: 118 row: 118
column: 21 column: 21
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -14,12 +14,13 @@ expression: diagnostics
row: 3 row: 3
column: 20 column: 20
fix: fix:
content: ValueError edits:
location: - content: ValueError
row: 3 location:
column: 7 row: 3
end_location: column: 7
row: 3 end_location:
column: 20 row: 3
column: 20
parent: ~ parent: ~

View file

@ -14,13 +14,14 @@ expression: diagnostics
row: 17 row: 17
column: 25 column: 25
fix: fix:
content: OSError edits:
location: - content: OSError
row: 17 location:
column: 7 row: 17
end_location: column: 7
row: 17 end_location:
column: 25 row: 17
column: 25
parent: ~ parent: ~
- kind: - kind:
name: DuplicateHandlerException name: DuplicateHandlerException
@ -34,13 +35,14 @@ expression: diagnostics
row: 28 row: 28
column: 25 column: 25
fix: fix:
content: MyError edits:
location: - content: MyError
row: 28 location:
column: 7 row: 28
end_location: column: 7
row: 28 end_location:
column: 25 row: 28
column: 25
parent: ~ parent: ~
- kind: - kind:
name: DuplicateHandlerException name: DuplicateHandlerException
@ -54,12 +56,13 @@ expression: diagnostics
row: 49 row: 49
column: 27 column: 27
fix: fix:
content: re.error edits:
location: - content: re.error
row: 49 location:
column: 7 row: 49
end_location: column: 7
row: 49 end_location:
column: 27 row: 49
column: 27
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 3 row: 3
column: 6 column: 6
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessComparison name: UselessComparison
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 7 row: 7
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessComparison name: UselessComparison
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 17 row: 17
column: 15 column: 15
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessComparison name: UselessComparison
@ -52,6 +55,7 @@ expression: diagnostics
end_location: end_location:
row: 24 row: 24
column: 10 column: 10
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 6 row: 6
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: CannotRaiseLiteral name: CannotRaiseLiteral
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 7 row: 7
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: CannotRaiseLiteral name: CannotRaiseLiteral
@ -39,6 +41,7 @@ expression: diagnostics
end_location: end_location:
row: 8 row: 8
column: 14 column: 14
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,6 +13,7 @@ expression: diagnostics
end_location: end_location:
row: 23 row: 23
column: 42 column: 42
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 11 row: 11
column: 6 column: 6
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 12 row: 12
column: 5 column: 5
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 13 row: 13
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 14 row: 14
column: 10 column: 10
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 15 row: 15
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 16 row: 16
column: 9 column: 9
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 17 row: 17
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -104,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 18 row: 18
column: 10 column: 10
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -117,7 +125,8 @@ expression: diagnostics
end_location: end_location:
row: 19 row: 19
column: 10 column: 10
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -130,7 +139,8 @@ expression: diagnostics
end_location: end_location:
row: 20 row: 20
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -143,7 +153,8 @@ expression: diagnostics
end_location: end_location:
row: 24 row: 24
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -156,7 +167,8 @@ expression: diagnostics
end_location: end_location:
row: 27 row: 27
column: 5 column: 5
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -169,7 +181,8 @@ expression: diagnostics
end_location: end_location:
row: 39 row: 39
column: 6 column: 6
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -182,7 +195,8 @@ expression: diagnostics
end_location: end_location:
row: 40 row: 40
column: 5 column: 5
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -195,7 +209,8 @@ expression: diagnostics
end_location: end_location:
row: 41 row: 41
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -208,7 +223,8 @@ expression: diagnostics
end_location: end_location:
row: 42 row: 42
column: 10 column: 10
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -221,7 +237,8 @@ expression: diagnostics
end_location: end_location:
row: 43 row: 43
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -234,7 +251,8 @@ expression: diagnostics
end_location: end_location:
row: 44 row: 44
column: 9 column: 9
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -247,7 +265,8 @@ expression: diagnostics
end_location: end_location:
row: 45 row: 45
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -260,7 +279,8 @@ expression: diagnostics
end_location: end_location:
row: 46 row: 46
column: 10 column: 10
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -273,7 +293,8 @@ expression: diagnostics
end_location: end_location:
row: 47 row: 47
column: 10 column: 10
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -286,7 +307,8 @@ expression: diagnostics
end_location: end_location:
row: 48 row: 48
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -299,7 +321,8 @@ expression: diagnostics
end_location: end_location:
row: 52 row: 52
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -312,7 +335,8 @@ expression: diagnostics
end_location: end_location:
row: 55 row: 55
column: 5 column: 5
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -325,7 +349,8 @@ expression: diagnostics
end_location: end_location:
row: 63 row: 63
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -338,7 +363,8 @@ expression: diagnostics
end_location: end_location:
row: 64 row: 64
column: 22 column: 22
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessExpression name: UselessExpression
@ -351,6 +377,7 @@ expression: diagnostics
end_location: end_location:
row: 65 row: 65
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 78 row: 78
column: 20 column: 20
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: CachedInstanceMethod name: CachedInstanceMethod
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 82 row: 82
column: 10 column: 10
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: CachedInstanceMethod name: CachedInstanceMethod
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 86 row: 86
column: 22 column: 22
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: CachedInstanceMethod name: CachedInstanceMethod
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 90 row: 90
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: CachedInstanceMethod name: CachedInstanceMethod
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 94 row: 94
column: 24 column: 24
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: CachedInstanceMethod name: CachedInstanceMethod
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 98 row: 98
column: 14 column: 14
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: CachedInstanceMethod name: CachedInstanceMethod
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 102 row: 102
column: 26 column: 26
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: CachedInstanceMethod name: CachedInstanceMethod
@ -104,6 +111,7 @@ expression: diagnostics
end_location: end_location:
row: 106 row: 106
column: 16 column: 16
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 8 row: 8
column: 9 column: 9
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: LoopVariableOverridesIterator name: LoopVariableOverridesIterator
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 21 row: 21
column: 15 column: 15
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: LoopVariableOverridesIterator name: LoopVariableOverridesIterator
@ -39,6 +41,7 @@ expression: diagnostics
end_location: end_location:
row: 36 row: 36
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 3 column: 3
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FStringDocstring name: FStringDocstring
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 14 row: 14
column: 28 column: 28
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FStringDocstring name: FStringDocstring
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 22 row: 22
column: 28 column: 28
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FStringDocstring name: FStringDocstring
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 30 row: 30
column: 28 column: 28
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FStringDocstring name: FStringDocstring
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 38 row: 38
column: 28 column: 28
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FStringDocstring name: FStringDocstring
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 46 row: 46
column: 24 column: 24
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FStringDocstring name: FStringDocstring
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 54 row: 54
column: 24 column: 24
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FStringDocstring name: FStringDocstring
@ -104,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 62 row: 62
column: 24 column: 24
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FStringDocstring name: FStringDocstring
@ -117,7 +125,8 @@ expression: diagnostics
end_location: end_location:
row: 70 row: 70
column: 24 column: 24
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FStringDocstring name: FStringDocstring
@ -130,6 +139,7 @@ expression: diagnostics
end_location: end_location:
row: 74 row: 74
column: 48 column: 48
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 26 column: 26
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UselessContextlibSuppress name: UselessContextlibSuppress
@ -26,6 +27,7 @@ expression: diagnostics
end_location: end_location:
row: 12 row: 12
column: 15 column: 15
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 12 row: 12
column: 30 column: 30
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 13 row: 13
column: 30 column: 30
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 16 row: 16
column: 16 column: 16
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 28 row: 28
column: 19 column: 19
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 29 row: 29
column: 19 column: 19
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 30 row: 30
column: 19 column: 19
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 31 row: 31
column: 22 column: 22
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -104,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 40 row: 40
column: 34 column: 34
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -117,7 +125,8 @@ expression: diagnostics
end_location: end_location:
row: 42 row: 42
column: 14 column: 14
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -130,7 +139,8 @@ expression: diagnostics
end_location: end_location:
row: 50 row: 50
column: 30 column: 30
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -143,7 +153,8 @@ expression: diagnostics
end_location: end_location:
row: 51 row: 51
column: 31 column: 31
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -156,7 +167,8 @@ expression: diagnostics
end_location: end_location:
row: 52 row: 52
column: 30 column: 30
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -169,7 +181,8 @@ expression: diagnostics
end_location: end_location:
row: 53 row: 53
column: 30 column: 30
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -182,7 +195,8 @@ expression: diagnostics
end_location: end_location:
row: 61 row: 61
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -195,7 +209,8 @@ expression: diagnostics
end_location: end_location:
row: 61 row: 61
column: 21 column: 21
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -208,7 +223,8 @@ expression: diagnostics
end_location: end_location:
row: 68 row: 68
column: 10 column: 10
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -221,7 +237,8 @@ expression: diagnostics
end_location: end_location:
row: 82 row: 82
column: 16 column: 16
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -234,7 +251,8 @@ expression: diagnostics
end_location: end_location:
row: 117 row: 117
column: 24 column: 24
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -247,7 +265,8 @@ expression: diagnostics
end_location: end_location:
row: 118 row: 118
column: 27 column: 27
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -260,7 +279,8 @@ expression: diagnostics
end_location: end_location:
row: 119 row: 119
column: 37 column: 37
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -273,7 +293,8 @@ expression: diagnostics
end_location: end_location:
row: 120 row: 120
column: 38 column: 38
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -286,7 +307,8 @@ expression: diagnostics
end_location: end_location:
row: 121 row: 121
column: 37 column: 37
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -299,7 +321,8 @@ expression: diagnostics
end_location: end_location:
row: 171 row: 171
column: 32 column: 32
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: FunctionUsesLoopVariable name: FunctionUsesLoopVariable
@ -312,6 +335,7 @@ expression: diagnostics
end_location: end_location:
row: 174 row: 174
column: 29 column: 29
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 20 row: 20
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AbstractBaseClassWithoutAbstractMethod name: AbstractBaseClassWithoutAbstractMethod
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 73 row: 73
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AbstractBaseClassWithoutAbstractMethod name: AbstractBaseClassWithoutAbstractMethod
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 84 row: 84
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AbstractBaseClassWithoutAbstractMethod name: AbstractBaseClassWithoutAbstractMethod
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 89 row: 89
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AbstractBaseClassWithoutAbstractMethod name: AbstractBaseClassWithoutAbstractMethod
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 94 row: 94
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: AbstractBaseClassWithoutAbstractMethod name: AbstractBaseClassWithoutAbstractMethod
@ -78,6 +83,7 @@ expression: diagnostics
end_location: end_location:
row: 142 row: 142
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 19 row: 19
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: DuplicateTryBlockException name: DuplicateTryBlockException
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 28 row: 28
column: 25 column: 25
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: DuplicateTryBlockException name: DuplicateTryBlockException
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 35 row: 35
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: DuplicateTryBlockException name: DuplicateTryBlockException
@ -52,6 +55,7 @@ expression: diagnostics
end_location: end_location:
row: 37 row: 37
column: 26 column: 26
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 16 row: 16
column: 30 column: 30
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: StarArgUnpackingAfterKeywordArg name: StarArgUnpackingAfterKeywordArg
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 17 row: 17
column: 23 column: 23
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: StarArgUnpackingAfterKeywordArg name: StarArgUnpackingAfterKeywordArg
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 18 row: 18
column: 34 column: 34
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: StarArgUnpackingAfterKeywordArg name: StarArgUnpackingAfterKeywordArg
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 19 row: 19
column: 40 column: 40
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: StarArgUnpackingAfterKeywordArg name: StarArgUnpackingAfterKeywordArg
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 20 row: 20
column: 23 column: 23
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: StarArgUnpackingAfterKeywordArg name: StarArgUnpackingAfterKeywordArg
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 20 row: 20
column: 33 column: 33
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: StarArgUnpackingAfterKeywordArg name: StarArgUnpackingAfterKeywordArg
@ -91,6 +97,7 @@ expression: diagnostics
end_location: end_location:
row: 21 row: 21
column: 33 column: 33
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 14 row: 14
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: EmptyMethodWithoutAbstractDecorator name: EmptyMethodWithoutAbstractDecorator
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 17 row: 17
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: EmptyMethodWithoutAbstractDecorator name: EmptyMethodWithoutAbstractDecorator
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 21 row: 21
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: EmptyMethodWithoutAbstractDecorator name: EmptyMethodWithoutAbstractDecorator
@ -52,6 +55,7 @@ expression: diagnostics
end_location: end_location:
row: 28 row: 28
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 8 row: 8
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: NoExplicitStacklevel name: NoExplicitStacklevel
@ -26,6 +27,7 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: ExceptWithEmptyTuple name: ExceptWithEmptyTuple
@ -26,6 +27,7 @@ expression: diagnostics
end_location: end_location:
row: 14 row: 14
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 12 row: 12
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: ExceptWithNonExceptionClasses name: ExceptWithNonExceptionClasses
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 17 row: 17
column: 9 column: 9
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: ExceptWithNonExceptionClasses name: ExceptWithNonExceptionClasses
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 22 row: 22
column: 57 column: 57
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: ExceptWithNonExceptionClasses name: ExceptWithNonExceptionClasses
@ -52,6 +55,7 @@ expression: diagnostics
end_location: end_location:
row: 27 row: 27
column: 57 column: 57
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 27 row: 27
column: 49 column: 49
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: ReuseOfGroupbyGenerator name: ReuseOfGroupbyGenerator
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 29 row: 29
column: 45 column: 45
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: ReuseOfGroupbyGenerator name: ReuseOfGroupbyGenerator
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 33 row: 33
column: 43 column: 43
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: ReuseOfGroupbyGenerator name: ReuseOfGroupbyGenerator
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 40 row: 40
column: 49 column: 49
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: ReuseOfGroupbyGenerator name: ReuseOfGroupbyGenerator
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 46 row: 46
column: 41 column: 41
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: ReuseOfGroupbyGenerator name: ReuseOfGroupbyGenerator
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 56 row: 56
column: 29 column: 29
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: ReuseOfGroupbyGenerator name: ReuseOfGroupbyGenerator
@ -91,6 +97,7 @@ expression: diagnostics
end_location: end_location:
row: 79 row: 79
column: 49 column: 49
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UnintentionalTypeAnnotation name: UnintentionalTypeAnnotation
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 10 row: 10
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UnintentionalTypeAnnotation name: UnintentionalTypeAnnotation
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 12 row: 12
column: 16 column: 16
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UnintentionalTypeAnnotation name: UnintentionalTypeAnnotation
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 13 row: 13
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UnintentionalTypeAnnotation name: UnintentionalTypeAnnotation
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 16 row: 16
column: 14 column: 14
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UnintentionalTypeAnnotation name: UnintentionalTypeAnnotation
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 17 row: 17
column: 22 column: 22
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UnintentionalTypeAnnotation name: UnintentionalTypeAnnotation
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 18 row: 18
column: 11 column: 11
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: UnintentionalTypeAnnotation name: UnintentionalTypeAnnotation
@ -104,6 +111,7 @@ expression: diagnostics
end_location: end_location:
row: 19 row: 19
column: 19 column: 19
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 10 row: 10
column: 23 column: 23
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RaiseWithoutFromInsideExcept name: RaiseWithoutFromInsideExcept
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 11 row: 11
column: 21 column: 21
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RaiseWithoutFromInsideExcept name: RaiseWithoutFromInsideExcept
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 16 row: 16
column: 39 column: 39
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RaiseWithoutFromInsideExcept name: RaiseWithoutFromInsideExcept
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 62 row: 62
column: 35 column: 35
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RaiseWithoutFromInsideExcept name: RaiseWithoutFromInsideExcept
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 64 row: 64
column: 35 column: 35
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: RaiseWithoutFromInsideExcept name: RaiseWithoutFromInsideExcept
@ -78,6 +83,7 @@ expression: diagnostics
end_location: end_location:
row: 72 row: 72
column: 39 column: 39
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 1 row: 1
column: 5 column: 5
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: ZipWithoutExplicitStrict name: ZipWithoutExplicitStrict
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 2 row: 2
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: ZipWithoutExplicitStrict name: ZipWithoutExplicitStrict
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 3 row: 3
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: ZipWithoutExplicitStrict name: ZipWithoutExplicitStrict
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 24 column: 24
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: ZipWithoutExplicitStrict name: ZipWithoutExplicitStrict
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 23 column: 23
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: ZipWithoutExplicitStrict name: ZipWithoutExplicitStrict
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: ZipWithoutExplicitStrict name: ZipWithoutExplicitStrict
@ -91,6 +97,7 @@ expression: diagnostics
end_location: end_location:
row: 6 row: 6
column: 26 column: 26
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,6 +13,7 @@ expression: diagnostics
end_location: end_location:
row: 19 row: 19
column: 63 column: 63
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 1 row: 1
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 2 row: 2
column: 29 column: 29
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 3 row: 3
column: 32 column: 32
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 5 column: 5
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 6 row: 6
column: 9 column: 9
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 7 row: 7
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 8 row: 8
column: 5 column: 5
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -104,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 8 row: 8
column: 14 column: 14
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -117,7 +125,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 3 column: 3
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -130,7 +139,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -143,7 +153,8 @@ expression: diagnostics
end_location: end_location:
row: 11 row: 11
column: 2 column: 2
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -156,7 +167,8 @@ expression: diagnostics
end_location: end_location:
row: 14 row: 14
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -169,7 +181,8 @@ expression: diagnostics
end_location: end_location:
row: 17 row: 17
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -182,7 +195,8 @@ expression: diagnostics
end_location: end_location:
row: 22 row: 22
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -195,7 +209,8 @@ expression: diagnostics
end_location: end_location:
row: 24 row: 24
column: 14 column: 14
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -208,7 +223,8 @@ expression: diagnostics
end_location: end_location:
row: 24 row: 24
column: 26 column: 26
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -221,7 +237,8 @@ expression: diagnostics
end_location: end_location:
row: 27 row: 27
column: 24 column: 24
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -234,7 +251,8 @@ expression: diagnostics
end_location: end_location:
row: 27 row: 27
column: 47 column: 47
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -247,7 +265,8 @@ expression: diagnostics
end_location: end_location:
row: 27 row: 27
column: 52 column: 52
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -260,6 +279,7 @@ expression: diagnostics
end_location: end_location:
row: 30 row: 30
column: 10 column: 10
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 1 row: 1
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 2 row: 2
column: 29 column: 29
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 5 column: 5
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 6 row: 6
column: 9 column: 9
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 7 row: 7
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 8 row: 8
column: 5 column: 5
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 8 row: 8
column: 14 column: 14
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -104,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 3 column: 3
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -117,7 +125,8 @@ expression: diagnostics
end_location: end_location:
row: 9 row: 9
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -130,7 +139,8 @@ expression: diagnostics
end_location: end_location:
row: 14 row: 14
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -143,7 +153,8 @@ expression: diagnostics
end_location: end_location:
row: 17 row: 17
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -156,7 +167,8 @@ expression: diagnostics
end_location: end_location:
row: 22 row: 22
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -169,7 +181,8 @@ expression: diagnostics
end_location: end_location:
row: 24 row: 24
column: 14 column: 14
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -182,7 +195,8 @@ expression: diagnostics
end_location: end_location:
row: 24 row: 24
column: 26 column: 26
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -195,7 +209,8 @@ expression: diagnostics
end_location: end_location:
row: 27 row: 27
column: 24 column: 24
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -208,7 +223,8 @@ expression: diagnostics
end_location: end_location:
row: 27 row: 27
column: 47 column: 47
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -221,7 +237,8 @@ expression: diagnostics
end_location: end_location:
row: 27 row: 27
column: 52 column: 52
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinVariableShadowing name: BuiltinVariableShadowing
@ -234,6 +251,7 @@ expression: diagnostics
end_location: end_location:
row: 30 row: 30
column: 10 column: 10
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 1 row: 1
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinArgumentShadowing name: BuiltinArgumentShadowing
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 1 row: 1
column: 22 column: 22
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinArgumentShadowing name: BuiltinArgumentShadowing
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 1 row: 1
column: 32 column: 32
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinArgumentShadowing name: BuiltinArgumentShadowing
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 1 row: 1
column: 43 column: 43
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinArgumentShadowing name: BuiltinArgumentShadowing
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 1 row: 1
column: 54 column: 54
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinArgumentShadowing name: BuiltinArgumentShadowing
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 21 column: 21
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinArgumentShadowing name: BuiltinArgumentShadowing
@ -91,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 8 row: 8
column: 18 column: 18
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinArgumentShadowing name: BuiltinArgumentShadowing
@ -104,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 8 row: 8
column: 23 column: 23
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinArgumentShadowing name: BuiltinArgumentShadowing
@ -117,6 +125,7 @@ expression: diagnostics
end_location: end_location:
row: 11 row: 11
column: 20 column: 20
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 1 row: 1
column: 13 column: 13
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinArgumentShadowing name: BuiltinArgumentShadowing
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 1 row: 1
column: 22 column: 22
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinArgumentShadowing name: BuiltinArgumentShadowing
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 1 row: 1
column: 32 column: 32
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinArgumentShadowing name: BuiltinArgumentShadowing
@ -52,7 +55,8 @@ expression: diagnostics
end_location: end_location:
row: 1 row: 1
column: 43 column: 43
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinArgumentShadowing name: BuiltinArgumentShadowing
@ -65,7 +69,8 @@ expression: diagnostics
end_location: end_location:
row: 1 row: 1
column: 54 column: 54
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinArgumentShadowing name: BuiltinArgumentShadowing
@ -78,7 +83,8 @@ expression: diagnostics
end_location: end_location:
row: 5 row: 5
column: 21 column: 21
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinArgumentShadowing name: BuiltinArgumentShadowing
@ -91,6 +97,7 @@ expression: diagnostics
end_location: end_location:
row: 11 row: 11
column: 20 column: 20
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 2 row: 2
column: 15 column: 15
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinAttributeShadowing name: BuiltinAttributeShadowing
@ -26,7 +27,8 @@ expression: diagnostics
end_location: end_location:
row: 3 row: 3
column: 6 column: 6
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinAttributeShadowing name: BuiltinAttributeShadowing
@ -39,7 +41,8 @@ expression: diagnostics
end_location: end_location:
row: 4 row: 4
column: 7 column: 7
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinAttributeShadowing name: BuiltinAttributeShadowing
@ -52,6 +55,7 @@ expression: diagnostics
end_location: end_location:
row: 12 row: 12
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -13,7 +13,8 @@ expression: diagnostics
end_location: end_location:
row: 2 row: 2
column: 15 column: 15
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: BuiltinAttributeShadowing name: BuiltinAttributeShadowing
@ -26,6 +27,7 @@ expression: diagnostics
end_location: end_location:
row: 12 row: 12
column: 12 column: 12
fix: ~ fix:
edits: []
parent: ~ parent: ~

View file

@ -14,13 +14,14 @@ expression: diagnostics
row: 4 row: 4
column: 17 column: 17
fix: fix:
content: "'test'," edits:
location: - content: "'test',"
row: 4 location:
column: 11 row: 4
end_location: column: 11
row: 4 end_location:
column: 17 row: 4
column: 17
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -34,13 +35,14 @@ expression: diagnostics
row: 10 row: 10
column: 5 column: 5
fix: fix:
content: "3," edits:
location: - content: "3,"
row: 10 location:
column: 4 row: 10
end_location: column: 4
row: 10 end_location:
column: 5 row: 10
column: 5
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -54,13 +56,14 @@ expression: diagnostics
row: 16 row: 16
column: 5 column: 5
fix: fix:
content: "3," edits:
location: - content: "3,"
row: 16 location:
column: 4 row: 16
end_location: column: 4
row: 16 end_location:
column: 5 row: 16
column: 5
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -74,13 +77,14 @@ expression: diagnostics
row: 23 row: 23
column: 5 column: 5
fix: fix:
content: "3," edits:
location: - content: "3,"
row: 23 location:
column: 4 row: 23
end_location: column: 4
row: 23 end_location:
column: 5 row: 23
column: 5
parent: ~ parent: ~
- kind: - kind:
name: TrailingCommaOnBareTuple name: TrailingCommaOnBareTuple
@ -93,7 +97,8 @@ expression: diagnostics
end_location: end_location:
row: 36 row: 36
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: TrailingCommaOnBareTuple name: TrailingCommaOnBareTuple
@ -106,7 +111,8 @@ expression: diagnostics
end_location: end_location:
row: 38 row: 38
column: 19 column: 19
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: TrailingCommaOnBareTuple name: TrailingCommaOnBareTuple
@ -119,7 +125,8 @@ expression: diagnostics
end_location: end_location:
row: 45 row: 45
column: 8 column: 8
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: TrailingCommaOnBareTuple name: TrailingCommaOnBareTuple
@ -132,7 +139,8 @@ expression: diagnostics
end_location: end_location:
row: 49 row: 49
column: 10 column: 10
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: TrailingCommaOnBareTuple name: TrailingCommaOnBareTuple
@ -145,7 +153,8 @@ expression: diagnostics
end_location: end_location:
row: 56 row: 56
column: 32 column: 32
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: TrailingCommaOnBareTuple name: TrailingCommaOnBareTuple
@ -158,7 +167,8 @@ expression: diagnostics
end_location: end_location:
row: 58 row: 58
column: 26 column: 26
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: TrailingCommaOnBareTuple name: TrailingCommaOnBareTuple
@ -171,7 +181,8 @@ expression: diagnostics
end_location: end_location:
row: 61 row: 61
column: 17 column: 17
fix: ~ fix:
edits: []
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -185,13 +196,14 @@ expression: diagnostics
row: 70 row: 70
column: 7 column: 7
fix: fix:
content: "bar," edits:
location: - content: "bar,"
row: 70 location:
column: 4 row: 70
end_location: column: 4
row: 70 end_location:
column: 7 row: 70
column: 7
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -205,13 +217,14 @@ expression: diagnostics
row: 78 row: 78
column: 7 column: 7
fix: fix:
content: "bar," edits:
location: - content: "bar,"
row: 78 location:
column: 4 row: 78
end_location: column: 4
row: 78 end_location:
column: 7 row: 78
column: 7
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -225,13 +238,14 @@ expression: diagnostics
row: 86 row: 86
column: 7 column: 7
fix: fix:
content: "bar," edits:
location: - content: "bar,"
row: 86 location:
column: 4 row: 86
end_location: column: 4
row: 86 end_location:
column: 7 row: 86
column: 7
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -245,13 +259,14 @@ expression: diagnostics
row: 152 row: 152
column: 5 column: 5
fix: fix:
content: "y," edits:
location: - content: "y,"
row: 152 location:
column: 4 row: 152
end_location: column: 4
row: 152 end_location:
column: 5 row: 152
column: 5
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -265,13 +280,14 @@ expression: diagnostics
row: 158 row: 158
column: 10 column: 10
fix: fix:
content: "Anyway," edits:
location: - content: "Anyway,"
row: 158 location:
column: 4 row: 158
end_location: column: 4
row: 158 end_location:
column: 10 row: 158
column: 10
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -285,13 +301,14 @@ expression: diagnostics
row: 293 row: 293
column: 14 column: 14
fix: fix:
content: "123," edits:
location: - content: "123,"
row: 293 location:
column: 11 row: 293
end_location: column: 11
row: 293 end_location:
column: 14 row: 293
column: 14
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -305,13 +322,14 @@ expression: diagnostics
row: 304 row: 304
column: 13 column: 13
fix: fix:
content: "2," edits:
location: - content: "2,"
row: 304 location:
column: 12 row: 304
end_location: column: 12
row: 304 end_location:
column: 13 row: 304
column: 13
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -325,13 +343,14 @@ expression: diagnostics
row: 310 row: 310
column: 13 column: 13
fix: fix:
content: "3," edits:
location: - content: "3,"
row: 310 location:
column: 12 row: 310
end_location: column: 12
row: 310 end_location:
column: 13 row: 310
column: 13
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -345,13 +364,14 @@ expression: diagnostics
row: 316 row: 316
column: 9 column: 9
fix: fix:
content: "3," edits:
location: - content: "3,"
row: 316 location:
column: 8 row: 316
end_location: column: 8
row: 316 end_location:
column: 9 row: 316
column: 9
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -365,13 +385,14 @@ expression: diagnostics
row: 322 row: 322
column: 14 column: 14
fix: fix:
content: "123," edits:
location: - content: "123,"
row: 322 location:
column: 11 row: 322
end_location: column: 11
row: 322 end_location:
column: 14 row: 322
column: 14
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -385,13 +406,14 @@ expression: diagnostics
row: 368 row: 368
column: 14 column: 14
fix: fix:
content: "\"not good\"," edits:
location: - content: "\"not good\","
row: 368 location:
column: 4 row: 368
end_location: column: 4
row: 368 end_location:
column: 14 row: 368
column: 14
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -405,13 +427,14 @@ expression: diagnostics
row: 375 row: 375
column: 14 column: 14
fix: fix:
content: "\"not good\"," edits:
location: - content: "\"not good\","
row: 375 location:
column: 4 row: 375
end_location: column: 4
row: 375 end_location:
column: 14 row: 375
column: 14
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -425,13 +448,14 @@ expression: diagnostics
row: 404 row: 404
column: 14 column: 14
fix: fix:
content: "\"not fine\"," edits:
location: - content: "\"not fine\","
row: 404 location:
column: 4 row: 404
end_location: column: 4
row: 404 end_location:
column: 14 row: 404
column: 14
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -445,13 +469,14 @@ expression: diagnostics
row: 432 row: 432
column: 14 column: 14
fix: fix:
content: "\"not fine\"," edits:
location: - content: "\"not fine\","
row: 432 location:
column: 4 row: 432
end_location: column: 4
row: 432 end_location:
column: 14 row: 432
column: 14
parent: ~ parent: ~
- kind: - kind:
name: ProhibitedTrailingComma name: ProhibitedTrailingComma
@ -465,13 +490,14 @@ expression: diagnostics
row: 485 row: 485
column: 21 column: 21
fix: fix:
content: "" edits:
location: - content: ""
row: 485 location:
column: 20 row: 485
end_location: column: 20
row: 485 end_location:
column: 21 row: 485
column: 21
parent: ~ parent: ~
- kind: - kind:
name: ProhibitedTrailingComma name: ProhibitedTrailingComma
@ -485,13 +511,14 @@ expression: diagnostics
row: 487 row: 487
column: 13 column: 13
fix: fix:
content: "" edits:
location: - content: ""
row: 487 location:
column: 12 row: 487
end_location: column: 12
row: 487 end_location:
column: 13 row: 487
column: 13
parent: ~ parent: ~
- kind: - kind:
name: ProhibitedTrailingComma name: ProhibitedTrailingComma
@ -505,13 +532,14 @@ expression: diagnostics
row: 489 row: 489
column: 18 column: 18
fix: fix:
content: "" edits:
location: - content: ""
row: 489 location:
column: 17 row: 489
end_location: column: 17
row: 489 end_location:
column: 18 row: 489
column: 18
parent: ~ parent: ~
- kind: - kind:
name: ProhibitedTrailingComma name: ProhibitedTrailingComma
@ -525,13 +553,14 @@ expression: diagnostics
row: 494 row: 494
column: 6 column: 6
fix: fix:
content: "" edits:
location: - content: ""
row: 494 location:
column: 5 row: 494
end_location: column: 5
row: 494 end_location:
column: 6 row: 494
column: 6
parent: ~ parent: ~
- kind: - kind:
name: ProhibitedTrailingComma name: ProhibitedTrailingComma
@ -545,13 +574,14 @@ expression: diagnostics
row: 496 row: 496
column: 21 column: 21
fix: fix:
content: "" edits:
location: - content: ""
row: 496 location:
column: 20 row: 496
end_location: column: 20
row: 496 end_location:
column: 21 row: 496
column: 21
parent: ~ parent: ~
- kind: - kind:
name: ProhibitedTrailingComma name: ProhibitedTrailingComma
@ -565,13 +595,14 @@ expression: diagnostics
row: 498 row: 498
column: 13 column: 13
fix: fix:
content: "" edits:
location: - content: ""
row: 498 location:
column: 12 row: 498
end_location: column: 12
row: 498 end_location:
column: 13 row: 498
column: 13
parent: ~ parent: ~
- kind: - kind:
name: ProhibitedTrailingComma name: ProhibitedTrailingComma
@ -585,13 +616,14 @@ expression: diagnostics
row: 500 row: 500
column: 18 column: 18
fix: fix:
content: "" edits:
location: - content: ""
row: 500 location:
column: 17 row: 500
end_location: column: 17
row: 500 end_location:
column: 18 row: 500
column: 18
parent: ~ parent: ~
- kind: - kind:
name: ProhibitedTrailingComma name: ProhibitedTrailingComma
@ -605,13 +637,14 @@ expression: diagnostics
row: 505 row: 505
column: 6 column: 6
fix: fix:
content: "" edits:
location: - content: ""
row: 505 location:
column: 5 row: 505
end_location: column: 5
row: 505 end_location:
column: 6 row: 505
column: 6
parent: ~ parent: ~
- kind: - kind:
name: ProhibitedTrailingComma name: ProhibitedTrailingComma
@ -625,13 +658,14 @@ expression: diagnostics
row: 511 row: 511
column: 10 column: 10
fix: fix:
content: "" edits:
location: - content: ""
row: 511 location:
column: 9 row: 511
end_location: column: 9
row: 511 end_location:
column: 10 row: 511
column: 10
parent: ~ parent: ~
- kind: - kind:
name: ProhibitedTrailingComma name: ProhibitedTrailingComma
@ -645,13 +679,14 @@ expression: diagnostics
row: 513 row: 513
column: 9 column: 9
fix: fix:
content: "" edits:
location: - content: ""
row: 513 location:
column: 8 row: 513
end_location: column: 8
row: 513 end_location:
column: 9 row: 513
column: 9
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -665,13 +700,14 @@ expression: diagnostics
row: 519 row: 519
column: 12 column: 12
fix: fix:
content: "kwargs," edits:
location: - content: "kwargs,"
row: 519 location:
column: 6 row: 519
end_location: column: 6
row: 519 end_location:
column: 12 row: 519
column: 12
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -685,13 +721,14 @@ expression: diagnostics
row: 526 row: 526
column: 9 column: 9
fix: fix:
content: "args," edits:
location: - content: "args,"
row: 526 location:
column: 5 row: 526
end_location: column: 5
row: 526 end_location:
column: 9 row: 526
column: 9
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -705,13 +742,14 @@ expression: diagnostics
row: 534 row: 534
column: 15 column: 15
fix: fix:
content: "extra_kwarg," edits:
location: - content: "extra_kwarg,"
row: 534 location:
column: 4 row: 534
end_location: column: 4
row: 534 end_location:
column: 15 row: 534
column: 15
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -725,13 +763,14 @@ expression: diagnostics
row: 541 row: 541
column: 12 column: 12
fix: fix:
content: "kwargs," edits:
location: - content: "kwargs,"
row: 541 location:
column: 6 row: 541
end_location: column: 6
row: 541 end_location:
column: 12 row: 541
column: 12
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -745,13 +784,14 @@ expression: diagnostics
row: 547 row: 547
column: 23 column: 23
fix: fix:
content: "not_called_kwargs," edits:
location: - content: "not_called_kwargs,"
row: 547 location:
column: 6 row: 547
end_location: column: 6
row: 547 end_location:
column: 23 row: 547
column: 23
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -765,13 +805,14 @@ expression: diagnostics
row: 554 row: 554
column: 14 column: 14
fix: fix:
content: "kwarg_only," edits:
location: - content: "kwarg_only,"
row: 554 location:
column: 4 row: 554
end_location: column: 4
row: 554 end_location:
column: 14 row: 554
column: 14
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -785,13 +826,14 @@ expression: diagnostics
row: 561 row: 561
column: 12 column: 12
fix: fix:
content: "kwargs," edits:
location: - content: "kwargs,"
row: 561 location:
column: 6 row: 561
end_location: column: 6
row: 561 end_location:
column: 12 row: 561
column: 12
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -805,13 +847,14 @@ expression: diagnostics
row: 565 row: 565
column: 12 column: 12
fix: fix:
content: "kwargs," edits:
location: - content: "kwargs,"
row: 565 location:
column: 6 row: 565
end_location: column: 6
row: 565 end_location:
column: 12 row: 565
column: 12
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -825,13 +868,14 @@ expression: diagnostics
row: 573 row: 573
column: 9 column: 9
fix: fix:
content: "args," edits:
location: - content: "args,"
row: 573 location:
column: 5 row: 573
end_location: column: 5
row: 573 end_location:
column: 9 row: 573
column: 9
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -845,13 +889,14 @@ expression: diagnostics
row: 577 row: 577
column: 9 column: 9
fix: fix:
content: "args," edits:
location: - content: "args,"
row: 577 location:
column: 5 row: 577
end_location: column: 5
row: 577 end_location:
column: 9 row: 577
column: 9
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -865,13 +910,14 @@ expression: diagnostics
row: 583 row: 583
column: 9 column: 9
fix: fix:
content: "args," edits:
location: - content: "args,"
row: 583 location:
column: 5 row: 583
end_location: column: 5
row: 583 end_location:
column: 9 row: 583
column: 9
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -885,13 +931,14 @@ expression: diagnostics
row: 590 row: 590
column: 12 column: 12
fix: fix:
content: "kwargs," edits:
location: - content: "kwargs,"
row: 590 location:
column: 6 row: 590
end_location: column: 6
row: 590 end_location:
column: 12 row: 590
column: 12
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -905,13 +952,14 @@ expression: diagnostics
row: 598 row: 598
column: 14 column: 14
fix: fix:
content: "kwarg_only," edits:
location: - content: "kwarg_only,"
row: 598 location:
column: 4 row: 598
end_location: column: 4
row: 598 end_location:
column: 14 row: 598
column: 14
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -925,13 +973,14 @@ expression: diagnostics
row: 627 row: 627
column: 19 column: 19
fix: fix:
content: "}," edits:
location: - content: "},"
row: 627 location:
column: 18 row: 627
end_location: column: 18
row: 627 end_location:
column: 19 row: 627
column: 19
parent: ~ parent: ~
- kind: - kind:
name: MissingTrailingComma name: MissingTrailingComma
@ -945,12 +994,13 @@ expression: diagnostics
row: 632 row: 632
column: 41 column: 41
fix: fix:
content: ")," edits:
location: - content: "),"
row: 632 location:
column: 40 row: 632
end_location: column: 40
row: 632 end_location:
column: 41 row: 632
column: 41
parent: ~ parent: ~

View file

@ -14,13 +14,14 @@ expression: diagnostics
row: 1 row: 1
column: 29 column: 29
fix: fix:
content: "[x for x in range(3)]" edits:
location: - content: "[x for x in range(3)]"
row: 1 location:
column: 4 row: 1
end_location: column: 4
row: 1 end_location:
column: 29 row: 1
column: 29
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryGeneratorList name: UnnecessaryGeneratorList
@ -34,12 +35,13 @@ expression: diagnostics
row: 4 row: 4
column: 1 column: 1
fix: fix:
content: "[\n x for x in range(3)\n]" edits:
location: - content: "[\n x for x in range(3)\n]"
row: 2 location:
column: 4 row: 2
end_location: column: 4
row: 4 end_location:
column: 1 row: 4
column: 1
parent: ~ parent: ~

View file

@ -14,13 +14,14 @@ expression: diagnostics
row: 1 row: 1
column: 28 column: 28
fix: fix:
content: "{x for x in range(3)}" edits:
location: - content: "{x for x in range(3)}"
row: 1 location:
column: 4 row: 1
end_location: column: 4
row: 1 end_location:
column: 28 row: 1
column: 28
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryGeneratorSet name: UnnecessaryGeneratorSet
@ -34,13 +35,14 @@ expression: diagnostics
row: 4 row: 4
column: 1 column: 1
fix: fix:
content: "{\n x for x in range(3)\n}" edits:
location: - content: "{\n x for x in range(3)\n}"
row: 2 location:
column: 4 row: 2
end_location: column: 4
row: 4 end_location:
column: 1 row: 4
column: 1
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryGeneratorSet name: UnnecessaryGeneratorSet
@ -54,13 +56,14 @@ expression: diagnostics
row: 5 row: 5
column: 48 column: 48
fix: fix:
content: " {a if a < 6 else 0 for a in range(3)} " edits:
location: - content: " {a if a < 6 else 0 for a in range(3)} "
row: 5 location:
column: 7 row: 5
end_location: column: 7
row: 5 end_location:
column: 48 row: 5
column: 48
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryGeneratorSet name: UnnecessaryGeneratorSet
@ -74,13 +77,14 @@ expression: diagnostics
row: 6 row: 6
column: 57 column: 57
fix: fix:
content: "{a if a < 6 else 0 for a in range(3)}" edits:
location: - content: "{a if a < 6 else 0 for a in range(3)}"
row: 6 location:
column: 16 row: 6
end_location: column: 16
row: 6 end_location:
column: 57 row: 6
column: 57
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryGeneratorSet name: UnnecessaryGeneratorSet
@ -94,12 +98,13 @@ expression: diagnostics
row: 7 row: 7
column: 39 column: 39
fix: fix:
content: " {a for a in range(3)} " edits:
location: - content: " {a for a in range(3)} "
row: 7 location:
column: 15 row: 7
end_location: column: 15
row: 7 end_location:
column: 39 row: 7
column: 39
parent: ~ parent: ~

View file

@ -14,13 +14,14 @@ expression: diagnostics
row: 1 row: 1
column: 30 column: 30
fix: fix:
content: "{x: x for x in range(3)}" edits:
location: - content: "{x: x for x in range(3)}"
row: 1 location:
column: 0 row: 1
end_location: column: 0
row: 1 end_location:
column: 30 row: 1
column: 30
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryGeneratorDict name: UnnecessaryGeneratorDict
@ -34,13 +35,14 @@ expression: diagnostics
row: 4 row: 4
column: 1 column: 1
fix: fix:
content: "{\n x: x for x in range(3)\n}" edits:
location: - content: "{\n x: x for x in range(3)\n}"
row: 2 location:
column: 0 row: 2
end_location: column: 0
row: 4 end_location:
column: 1 row: 4
column: 1
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryGeneratorDict name: UnnecessaryGeneratorDict
@ -54,13 +56,14 @@ expression: diagnostics
row: 6 row: 6
column: 37 column: 37
fix: fix:
content: " {x: x for x in range(3)} " edits:
location: - content: " {x: x for x in range(3)} "
row: 6 location:
column: 7 row: 6
end_location: column: 7
row: 6 end_location:
column: 37 row: 6
column: 37
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryGeneratorDict name: UnnecessaryGeneratorDict
@ -74,12 +77,13 @@ expression: diagnostics
row: 7 row: 7
column: 45 column: 45
fix: fix:
content: " {x: x for x in range(3)} " edits:
location: - content: " {x: x for x in range(3)} "
row: 7 location:
column: 15 row: 7
end_location: column: 15
row: 7 end_location:
column: 45 row: 7
column: 45
parent: ~ parent: ~

View file

@ -14,13 +14,14 @@ expression: diagnostics
row: 1 row: 1
column: 30 column: 30
fix: fix:
content: "{x for x in range(3)}" edits:
location: - content: "{x for x in range(3)}"
row: 1 location:
column: 4 row: 1
end_location: column: 4
row: 1 end_location:
column: 30 row: 1
column: 30
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryListComprehensionSet name: UnnecessaryListComprehensionSet
@ -34,12 +35,13 @@ expression: diagnostics
row: 4 row: 4
column: 1 column: 1
fix: fix:
content: "{\n x for x in range(3)\n}" edits:
location: - content: "{\n x for x in range(3)\n}"
row: 2 location:
column: 4 row: 2
end_location: column: 4
row: 4 end_location:
column: 1 row: 4
column: 1
parent: ~ parent: ~

View file

@ -14,12 +14,13 @@ expression: diagnostics
row: 1 row: 1
column: 32 column: 32
fix: fix:
content: "{i: i for i in range(3)}" edits:
location: - content: "{i: i for i in range(3)}"
row: 1 location:
column: 0 row: 1
end_location: column: 0
row: 1 end_location:
column: 32 row: 1
column: 32
parent: ~ parent: ~

View file

@ -14,13 +14,14 @@ expression: diagnostics
row: 1 row: 1
column: 11 column: 11
fix: fix:
content: "{1, 2}" edits:
location: - content: "{1, 2}"
row: 1 location:
column: 0 row: 1
end_location: column: 0
row: 1 end_location:
column: 11 row: 1
column: 11
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryLiteralSet name: UnnecessaryLiteralSet
@ -34,13 +35,14 @@ expression: diagnostics
row: 2 row: 2
column: 11 column: 11
fix: fix:
content: "{1, 2}" edits:
location: - content: "{1, 2}"
row: 2 location:
column: 0 row: 2
end_location: column: 0
row: 2 end_location:
column: 11 row: 2
column: 11
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryLiteralSet name: UnnecessaryLiteralSet
@ -54,13 +56,14 @@ expression: diagnostics
row: 3 row: 3
column: 7 column: 7
fix: fix:
content: set() edits:
location: - content: set()
row: 3 location:
column: 0 row: 3
end_location: column: 0
row: 3 end_location:
column: 7 row: 3
column: 7
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryLiteralSet name: UnnecessaryLiteralSet
@ -74,13 +77,14 @@ expression: diagnostics
row: 4 row: 4
column: 7 column: 7
fix: fix:
content: set() edits:
location: - content: set()
row: 4 location:
column: 0 row: 4
end_location: column: 0
row: 4 end_location:
column: 7 row: 4
column: 7
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryLiteralSet name: UnnecessaryLiteralSet
@ -94,13 +98,14 @@ expression: diagnostics
row: 6 row: 6
column: 9 column: 9
fix: fix:
content: "{1}" edits:
location: - content: "{1}"
row: 6 location:
column: 0 row: 6
end_location: column: 0
row: 6 end_location:
column: 9 row: 6
column: 9
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryLiteralSet name: UnnecessaryLiteralSet
@ -114,13 +119,14 @@ expression: diagnostics
row: 9 row: 9
column: 2 column: 2
fix: fix:
content: "{\n 1,\n}" edits:
location: - content: "{\n 1,\n}"
row: 7 location:
column: 0 row: 7
end_location: column: 0
row: 9 end_location:
column: 2 row: 9
column: 2
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryLiteralSet name: UnnecessaryLiteralSet
@ -134,13 +140,14 @@ expression: diagnostics
row: 12 row: 12
column: 2 column: 2
fix: fix:
content: "{\n 1,\n}" edits:
location: - content: "{\n 1,\n}"
row: 10 location:
column: 0 row: 10
end_location: column: 0
row: 12 end_location:
column: 2 row: 12
column: 2
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryLiteralSet name: UnnecessaryLiteralSet
@ -154,13 +161,14 @@ expression: diagnostics
row: 15 row: 15
column: 1 column: 1
fix: fix:
content: "{1}" edits:
location: - content: "{1}"
row: 13 location:
column: 0 row: 13
end_location: column: 0
row: 15 end_location:
column: 1 row: 15
column: 1
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryLiteralSet name: UnnecessaryLiteralSet
@ -174,12 +182,13 @@ expression: diagnostics
row: 18 row: 18
column: 1 column: 1
fix: fix:
content: "{1,}" edits:
location: - content: "{1,}"
row: 16 location:
column: 0 row: 16
end_location: column: 0
row: 18 end_location:
column: 1 row: 18
column: 1
parent: ~ parent: ~

View file

@ -14,13 +14,14 @@ expression: diagnostics
row: 1 row: 1
column: 19 column: 19
fix: fix:
content: "{1: 2}" edits:
location: - content: "{1: 2}"
row: 1 location:
column: 5 row: 1
end_location: column: 5
row: 1 end_location:
column: 19 row: 1
column: 19
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryLiteralDict name: UnnecessaryLiteralDict
@ -34,13 +35,14 @@ expression: diagnostics
row: 2 row: 2
column: 20 column: 20
fix: fix:
content: "{1: 2,}" edits:
location: - content: "{1: 2,}"
row: 2 location:
column: 5 row: 2
end_location: column: 5
row: 2 end_location:
column: 20 row: 2
column: 20
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryLiteralDict name: UnnecessaryLiteralDict
@ -54,13 +56,14 @@ expression: diagnostics
row: 3 row: 3
column: 13 column: 13
fix: fix:
content: "{}" edits:
location: - content: "{}"
row: 3 location:
column: 5 row: 3
end_location: column: 5
row: 3 end_location:
column: 13 row: 3
column: 13
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryLiteralDict name: UnnecessaryLiteralDict
@ -74,12 +77,13 @@ expression: diagnostics
row: 4 row: 4
column: 13 column: 13
fix: fix:
content: "{}" edits:
location: - content: "{}"
row: 4 location:
column: 5 row: 4
end_location: column: 5
row: 4 end_location:
column: 13 row: 4
column: 13
parent: ~ parent: ~

View file

@ -14,13 +14,14 @@ expression: diagnostics
row: 1 row: 1
column: 11 column: 11
fix: fix:
content: () edits:
location: - content: ()
row: 1 location:
column: 4 row: 1
end_location: column: 4
row: 1 end_location:
column: 11 row: 1
column: 11
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryCollectionCall name: UnnecessaryCollectionCall
@ -34,13 +35,14 @@ expression: diagnostics
row: 2 row: 2
column: 10 column: 10
fix: fix:
content: "[]" edits:
location: - content: "[]"
row: 2 location:
column: 4 row: 2
end_location: column: 4
row: 2 end_location:
column: 10 row: 2
column: 10
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryCollectionCall name: UnnecessaryCollectionCall
@ -54,13 +56,14 @@ expression: diagnostics
row: 3 row: 3
column: 11 column: 11
fix: fix:
content: "{}" edits:
location: - content: "{}"
row: 3 location:
column: 5 row: 3
end_location: column: 5
row: 3 end_location:
column: 11 row: 3
column: 11
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryCollectionCall name: UnnecessaryCollectionCall
@ -74,12 +77,13 @@ expression: diagnostics
row: 4 row: 4
column: 14 column: 14
fix: fix:
content: "{\"a\": 1}" edits:
location: - content: "{\"a\": 1}"
row: 4 location:
column: 5 row: 4
end_location: column: 5
row: 4 end_location:
column: 14 row: 4
column: 14
parent: ~ parent: ~

View file

@ -14,13 +14,14 @@ expression: diagnostics
row: 1 row: 1
column: 11 column: 11
fix: fix:
content: () edits:
location: - content: ()
row: 1 location:
column: 4 row: 1
end_location: column: 4
row: 1 end_location:
column: 11 row: 1
column: 11
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryCollectionCall name: UnnecessaryCollectionCall
@ -34,13 +35,14 @@ expression: diagnostics
row: 2 row: 2
column: 10 column: 10
fix: fix:
content: "[]" edits:
location: - content: "[]"
row: 2 location:
column: 4 row: 2
end_location: column: 4
row: 2 end_location:
column: 10 row: 2
column: 10
parent: ~ parent: ~
- kind: - kind:
name: UnnecessaryCollectionCall name: UnnecessaryCollectionCall
@ -54,12 +56,13 @@ expression: diagnostics
row: 3 row: 3
column: 11 column: 11
fix: fix:
content: "{}" edits:
location: - content: "{}"
row: 3 location:
column: 5 row: 3
end_location: column: 5
row: 3 end_location:
column: 11 row: 3
column: 11
parent: ~ parent: ~

Some files were not shown because too many files have changed in this diff Show more