mirror of https://github.com/astral-sh/ruff
Always compute runtime annotations for flake8-type-checking rules (#5967)
## Summary These are skipped as an optimization, but it feels kind of unnecessary and makes the code a bit more confusing than is worthwhile. (non-`strict` is also by far the more popular setting, and the default.)
This commit is contained in:
parent
86b6a3e1ad
commit
45318d08b7
|
|
@ -4860,9 +4860,6 @@ impl<'a> Checker<'a> {
|
|||
])
|
||||
};
|
||||
let runtime_imports: Vec<Vec<&Binding>> = if enforce_typing_imports {
|
||||
if self.settings.flake8_type_checking.strict {
|
||||
vec![]
|
||||
} else {
|
||||
self.semantic
|
||||
.scopes
|
||||
.iter()
|
||||
|
|
@ -4879,7 +4876,6 @@ impl<'a> Checker<'a> {
|
|||
.collect()
|
||||
})
|
||||
.collect::<Vec<_>>()
|
||||
}
|
||||
} else {
|
||||
vec![]
|
||||
};
|
||||
|
|
@ -5070,17 +5066,13 @@ impl<'a> Checker<'a> {
|
|||
ScopeKind::Function(_) | ScopeKind::AsyncFunction(_) | ScopeKind::Module
|
||||
) {
|
||||
if enforce_typing_imports {
|
||||
let runtime_imports: Vec<&Binding> =
|
||||
if self.settings.flake8_type_checking.strict {
|
||||
vec![]
|
||||
} else {
|
||||
self.semantic
|
||||
let runtime_imports: Vec<&Binding> = self
|
||||
.semantic
|
||||
.scopes
|
||||
.ancestor_ids(scope_id)
|
||||
.flat_map(|scope_id| runtime_imports[scope_id.as_usize()].iter())
|
||||
.copied()
|
||||
.collect()
|
||||
};
|
||||
.collect();
|
||||
|
||||
if self.enabled(Rule::RuntimeImportInTypeCheckingBlock) {
|
||||
flake8_type_checking::rules::runtime_import_in_type_checking_block(
|
||||
|
|
|
|||
Loading…
Reference in New Issue