Browse Source
Add missing underscore in Modal refresh method
pull/7691/head
Narmy
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
discord/ui/modal.py
|
|
@ -174,7 +174,7 @@ class Modal(View): |
|
|
|
def _refresh(self, components: Sequence[ModalSubmitComponentInteractionDataPayload]) -> None: |
|
|
|
for component in components: |
|
|
|
if component['type'] == 1: |
|
|
|
self.refresh(component['components']) |
|
|
|
self._refresh(component['components']) |
|
|
|
else: |
|
|
|
item = find(lambda i: i.custom_id == component['custom_id'], self.children) # type: ignore |
|
|
|
if item is None: |
|
|
|