Skip to content

Commit 31afa3f

Browse files
Abel Milashclaude
andcommitted
Apply black formatting to _http.py
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent ffe0761 commit 31afa3f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • src/PowerPlatform/Dataverse/core

src/PowerPlatform/Dataverse/core/_http.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ def _request(self, method: str, url: str, **kwargs: Any) -> requests.Response:
8282
kwargs["timeout"] = self.default_timeout
8383
else:
8484
m = (method or "").lower()
85-
kwargs["timeout"] = _TIMEOUT_WRITE_METHODS if m in ("post", "patch", "delete") else _TIMEOUT_READ_METHODS
85+
kwargs["timeout"] = (
86+
_TIMEOUT_WRITE_METHODS if m in ("post", "patch", "delete") else _TIMEOUT_READ_METHODS
87+
)
8688

8789
# Log outbound request once (before retry loop).
8890
# Use explicit key presence checks so falsy values (e.g. {}) are logged correctly.

0 commit comments

Comments
 (0)