From 3be05eb2f3564cdd86acfeece8193e303a086b9a Mon Sep 17 00:00:00 2001 From: Folarin Benjamen Pelumi <89490327+Benflow3@users.noreply.github.com> Date: Fri, 19 Jun 2026 12:38:04 +0100 Subject: [PATCH] docs: refactor ``Response`` docstring to show clean code example ``::`` was added to show block code instead of plain text --- .../src/dexpace/sdk/core/http/response/response.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/dexpace-sdk-core/src/dexpace/sdk/core/http/response/response.py b/packages/dexpace-sdk-core/src/dexpace/sdk/core/http/response/response.py index 506c13d..e2409ef 100644 --- a/packages/dexpace-sdk-core/src/dexpace/sdk/core/http/response/response.py +++ b/packages/dexpace-sdk-core/src/dexpace/sdk/core/http/response/response.py @@ -25,9 +25,7 @@ class Response: """Immutable HTTP response produced by a transport. - Implements the context-manager protocol so callers can - - .. code-block:: python + Implements the context-manager protocol so callers can:: with http_client.execute(request) as response: ...