File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ class InputText:
36
36
The maximum number of characters that can be entered.
37
37
Must be between 1 and 4000.
38
38
required: Optional[:class:`bool`]
39
- Whether the input text field is required or not. Defaults to `True`.
39
+ Whether the input text field is required or not. Defaults to `` True` `.
40
40
value: Optional[:class:`str`]
41
41
Pre-fills the input text field with this value.
42
42
Must be 4000 characters or fewer.
@@ -151,7 +151,7 @@ def placeholder(self, value: str | None):
151
151
152
152
@property
153
153
def min_length (self ) -> int | None :
154
- """The minimum number of characters that must be entered. Defaults to `0` ."""
154
+ """The minimum number of characters that must be entered. Defaults to 0 ."""
155
155
return self ._underlying .min_length
156
156
157
157
@min_length .setter
@@ -177,7 +177,7 @@ def max_length(self, value: int | None):
177
177
178
178
@property
179
179
def required (self ) -> bool | None :
180
- """Whether the input text field is required or not. Defaults to `True`."""
180
+ """Whether the input text field is required or not. Defaults to `` True` `."""
181
181
return self ._underlying .required
182
182
183
183
@required .setter
You can’t perform that action at this time.
0 commit comments