Skip to content

Commit 1937dd0

Browse files
committed
fix: use typing.Dict instead
1 parent 793b8f5 commit 1937dd0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/request_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import unittest
2-
from typing import Any
2+
from typing import Any, Dict
33
from unittest.mock import MagicMock, Mock, patch
44

55
from resend import request
@@ -18,7 +18,7 @@ def test_request_idempotency_key_is_set(self, mock_requests: MagicMock) -> None:
1818

1919
mock_requests.return_value = mock_response
2020

21-
req = request.Request[dict[str, Any]](
21+
req = request.Request[Dict[str, Any]](
2222
path="/test",
2323
params={},
2424
verb="post",

0 commit comments

Comments
 (0)