Browse Source
Improve __repr__ for Webhook and SyncWebhook
pull/9773/head
owocado
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
2 deletions
-
discord/webhook/async_.py
-
discord/webhook/sync.py
|
|
@ -1155,7 +1155,7 @@ class Webhook(BaseWebhook): |
|
|
|
self.proxy_auth: Optional[aiohttp.BasicAuth] = proxy_auth |
|
|
|
|
|
|
|
def __repr__(self) -> str: |
|
|
|
return f'<Webhook id={self.id!r}>' |
|
|
|
return f'<Webhook id={self.id!r} type={self.type!r} name={self.name!r}>' |
|
|
|
|
|
|
|
@property |
|
|
|
def url(self) -> str: |
|
|
|
|
|
@ -608,7 +608,7 @@ class SyncWebhook(BaseWebhook): |
|
|
|
self.session: Session = session |
|
|
|
|
|
|
|
def __repr__(self) -> str: |
|
|
|
return f'<Webhook id={self.id!r}>' |
|
|
|
return f'<Webhook id={self.id!r} type={self.type!r} name={self.name!r}>' |
|
|
|
|
|
|
|
@property |
|
|
|
def url(self) -> str: |
|
|
|