From 8ebbe6b0f65f390531d35145bf8d68dc8eefee95 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Thu, 18 Dec 2025 09:59:00 -0600 Subject: [PATCH] Invert case --- crates/ty_python_semantic/src/types/instance.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ty_python_semantic/src/types/instance.rs b/crates/ty_python_semantic/src/types/instance.rs index 9e674065b9..9322edfbfb 100644 --- a/crates/ty_python_semantic/src/types/instance.rs +++ b/crates/ty_python_semantic/src/types/instance.rs @@ -720,7 +720,7 @@ impl<'db> ProtocolInstanceType<'db> { _value: ProtocolInstanceType<'db>, _: (), ) -> bool { - true + false } is_equivalent_to_object_inner(db, self, ())