diff --git a/crates/ty_python_semantic/src/types.rs b/crates/ty_python_semantic/src/types.rs index a4f2f1ed72..6b5f0047f6 100644 --- a/crates/ty_python_semantic/src/types.rs +++ b/crates/ty_python_semantic/src/types.rs @@ -1909,11 +1909,7 @@ impl<'db> Type<'db> { /// This uses `TypeRelation::ConstraintSetAssignability`, which encodes typevar relations into /// a constraint set and lets `satisfied_by_all_typevars` perform existential vs universal /// reasoning depending on inferable typevars. - pub fn is_constraint_set_assignable_to( - self, - db: &'db dyn Db, - target: Type<'db>, - ) -> bool { + pub fn is_constraint_set_assignable_to(self, db: &'db dyn Db, target: Type<'db>) -> bool { self.when_constraint_set_assignable_to(db, target, InferableTypeVars::None) .is_always_satisfied(db) }