We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ba1d3f commit 3169cc6Copy full SHA for 3169cc6
discord/components/input_text.py
@@ -106,7 +106,7 @@ def __init__(
106
self,
107
style: int | TextInputStyle,
108
custom_id: str,
109
- min_lenght: int | None = None,
+ min_length: int | None = None,
110
max_length: int | None = None,
111
placeholder: str | None = None,
112
required: bool = True,
@@ -115,7 +115,7 @@ def __init__(
115
) -> None:
116
self.style: TextInputStyle = style # pyright: ignore[reportAttributeAccessIssue]
117
self.custom_id: str = custom_id
118
- self.min_length: int | None = min_lenght
+ self.min_length: int | None = min_length
119
self.max_length: int | None = max_length
120
self.placeholder: str | None = placeholder
121
self.required: bool = required
0 commit comments