feat: include watchers in issue details and update API call parameters

This commit is contained in:
sha
2026-03-24 00:19:17 +02:00
parent 46bc74af37
commit b60bf841f4
3 changed files with 10 additions and 3 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ def _post(path: str, body: dict) -> dict:
with httpx.Client(timeout=15) as client:
resp = client.post(url, headers=_headers(), content=json.dumps(body))
resp.raise_for_status()
return resp.json()
return resp.json() if resp.content else {}
def _delete(path: str) -> None: