From 271ea7f5fe23fb008df908f13a94ba59f3670180 Mon Sep 17 00:00:00 2001 From: claw Date: Wed, 13 May 2026 07:25:26 -0700 Subject: [PATCH] style: remove stray blank line in doRequestWithBody --- github/client.go | 1 - 1 file changed, 1 deletion(-) diff --git a/github/client.go b/github/client.go index 5ee9d85..cbaf828 100644 --- a/github/client.go +++ b/github/client.go @@ -384,7 +384,6 @@ func (c *Client) doRequestWithBody(ctx context.Context, method, reqURL string, r opts.extraHeaders = map[string]string{"Content-Type": "application/json"} } return c.doRequestCore(ctx, method, reqURL, opts) - } // doJSONRequest performs an HTTP request with a JSON body and returns the response body.