Skip to content

Commit b8f3b10

Browse files
author
Chris Thorwarth
committed
lint issues
1 parent 8bc1ac5 commit b8f3b10

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/api_resources/kv/namespaces/test_values.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def test_update_uses_multipart_form_data(self, client: Cloudflare, respx_mock: M
130130

131131
# Verify the request was made
132132
assert respx_mock.calls.call_count == 1
133-
request = respx_mock.calls[0].request
133+
request: httpx.Request = cast(Any, respx_mock.calls[0]).request
134134

135135
# Verify Content-Type is multipart/form-data (with boundary)
136136
content_type = request.headers.get("content-type", "")
@@ -396,7 +396,7 @@ async def test_update_uses_multipart_form_data(self, async_client: AsyncCloudfla
396396

397397
# Verify the request was made
398398
assert respx_mock.calls.call_count == 1
399-
request = respx_mock.calls[0].request
399+
request: httpx.Request = cast(Any, respx_mock.calls[0]).request
400400

401401
# Verify Content-Type is multipart/form-data (with boundary)
402402
content_type = request.headers.get("content-type", "")

0 commit comments

Comments
 (0)