Skip to content

Commit f42cf93

Browse files
committed
rename params
1 parent 14b636a commit f42cf93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/ty_python_semantic/src/types.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4841,18 +4841,18 @@ impl<'db> Type<'db> {
48414841
self,
48424842
Signature::new(
48434843
Parameters::new([
4844-
Parameter::positional_only(Some(Name::new_static("a")))
4844+
Parameter::positional_only(Some(Name::new_static("constraints")))
48454845
.with_annotated_type(UnionType::from_elements(
48464846
db,
48474847
[
48484848
KnownClass::Bool.to_instance(db),
48494849
KnownClass::ConstraintSet.to_instance(db),
48504850
],
48514851
)),
4852-
Parameter::positional_only(Some(Name::new_static("a")))
4852+
Parameter::positional_only(Some(Name::new_static("ty")))
48534853
.type_form()
48544854
.with_annotated_type(Type::any()),
4855-
Parameter::positional_only(Some(Name::new_static("b")))
4855+
Parameter::positional_only(Some(Name::new_static("of")))
48564856
.type_form()
48574857
.with_annotated_type(Type::any()),
48584858
]),

0 commit comments

Comments
 (0)