Browse Source

Improve __repr__ for Webhook and SyncWebhook

pull/9773/head
owocado 1 year ago
committed by GitHub
parent
commit
425edd2e10
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      discord/webhook/async_.py
  2. 2
      discord/webhook/sync.py

2
discord/webhook/async_.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:

2
discord/webhook/sync.py

@ -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:

Loading…
Cancel
Save