Skip to content

Commit 6b40844

Browse files
authored
Default min/max_values to None
Signed-off-by: Soheab <[email protected]>
1 parent c9c7143 commit 6b40844

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

discord/ui/file_upload.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ def __init__(
6060
*,
6161
label: str,
6262
custom_id: str | None = None,
63-
min_values: int | None = 0,
64-
max_values: int | None = 1,
63+
min_values: int | None = None,
64+
max_values: int | None = None,
6565
required: bool = True,
6666
row: int | None = None,
6767
id: int | None = None,

0 commit comments

Comments
 (0)