Skip to content

Commit 8a9fe8f

Browse files
authored
fix modal init
1 parent 8fdc3f1 commit 8a9fe8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

discord/ui/modal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def __init__(
7878
self._custom_id: str | None = custom_id or os.urandom(16).hex()
7979
if len(title) > 45:
8080
raise ValueError("title must be 45 characters or fewer")
81-
super().__init__(*children, timeout=timeout)
81+
super().__init__(timeout=timeout)
8282
self._title = title
8383
self.loop = asyncio.get_event_loop()
8484

0 commit comments

Comments
 (0)