Compare commits
2 Commits
815176c8c7
...
5d5ec52170
Author | SHA1 | Date |
---|---|---|
z78078 | 5d5ec52170 | |
z78078 | 785c6bcbb0 |
|
@ -556,7 +556,7 @@ impl InnerResolver {
|
||||||
if let TopLevelDef::Class {
|
if let TopLevelDef::Class {
|
||||||
object_id, methods, constructor, ..
|
object_id, methods, constructor, ..
|
||||||
} = &*def.read() {
|
} = &*def.read() {
|
||||||
if object_id == def_id && !constructor.is_none() && methods.iter().any(|(s, _, _)| s == &"__init__".into()) {
|
if object_id == def_id && constructor.is_some() && methods.iter().any(|(s, _, _)| s == &"__init__".into()) {
|
||||||
return constructor.clone();
|
return constructor.clone();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue