mirror of https://github.com/astral-sh/ruff
fix bug
This commit is contained in:
parent
d72f767b09
commit
ca10890fa0
|
|
@ -170,7 +170,7 @@ impl<'db> ProtocolInstanceType<'db> {
|
||||||
/// TODO: consider the types of the members as well as their existence
|
/// TODO: consider the types of the members as well as their existence
|
||||||
pub(super) fn is_subtype_of(self, db: &'db dyn Db, other: Self) -> bool {
|
pub(super) fn is_subtype_of(self, db: &'db dyn Db, other: Self) -> bool {
|
||||||
self.protocol_members(db)
|
self.protocol_members(db)
|
||||||
.is_subset(other.protocol_members(db))
|
.is_superset(other.protocol_members(db))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// TODO: consider the types of the members as well as their existence
|
/// TODO: consider the types of the members as well as their existence
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue