style: trim _send_payload docstring

This commit is contained in:
Re-bin
2026-02-20 15:26:12 +00:00
parent 9643b477da
commit b853222c87

View File

@@ -125,10 +125,7 @@ class DiscordChannel(BaseChannel):
async def _send_payload( async def _send_payload(
self, url: str, headers: dict[str, str], payload: dict[str, Any] self, url: str, headers: dict[str, str], payload: dict[str, Any]
) -> bool: ) -> bool:
"""Send a single Discord API payload with retry on rate-limit. """Send a single Discord API payload with retry on rate-limit. Returns True on success."""
Returns True on success, False if all attempts failed.
"""
for attempt in range(3): for attempt in range(3):
try: try:
response = await self._http.post(url, headers=headers, json=payload) response = await self._http.post(url, headers=headers, json=payload)