From 3fcda50f912f510ab972cdd9a93c7b8286901a01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cantoineeripret=E2=80=9D?= Date: Tue, 12 May 2026 16:20:58 +0200 Subject: [PATCH 1/2] missing comma https://github.com/burnash/gspread/pull/1584 by @EwertonLuan --- docs/user-guide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide.rst b/docs/user-guide.rst index 8ac97ea7..e3c8e5ac 100644 --- a/docs/user-guide.rst +++ b/docs/user-guide.rst @@ -368,7 +368,7 @@ Or add validation with a drop down. 'C2:C7', ValidationConditionType.one_of_list, ['Yes', - 'No',] + 'No'], showCustomUi=True ) From 127ba2bf80f306ce1f060640cad6a22939b7d53b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cantoineeripret=E2=80=9D?= Date: Tue, 12 May 2026 16:36:02 +0200 Subject: [PATCH 2/2] fix CI error --- gspread/http_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gspread/http_client.py b/gspread/http_client.py index b4d74a4b..9aaf448a 100644 --- a/gspread/http_client.py +++ b/gspread/http_client.py @@ -115,7 +115,7 @@ def request( response = self.session.request( method=method, url=endpoint, - json=json, + json=dict(json) if json else None, params=params, data=data, files=files,