File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ class ResponseMeta(TypedDict):
2222 totalCount : int
2323
2424
25- class Response (TypedDict , Generic [T ]):
25+ class Response (Generic [T ]):
2626 data : T
2727
2828
29- class PaginatedResponse (TypedDict , Generic [T ]):
29+ class PaginatedResponse (Generic [T ]):
3030 meta : ResponseMeta
3131 data : list [T ]
Original file line number Diff line number Diff line change @@ -57,11 +57,11 @@ class TokenAddressHoldersResponse(TypedDict):
5757 tokenAddress : str
5858
5959
60- class TokenPaginatedResponseData (TypedDict , Generic [T ]):
60+ class TokenPaginatedResponseData (Generic [T ]):
6161 data : T
6262
6363
64- class TokenPaginatedResponseResults (TypedDict , Generic [T ]):
64+ class TokenPaginatedResponseResults (Generic [T ]):
6565 meta : ResponseMeta
6666 results : list [T ]
6767
You can’t perform that action at this time.
0 commit comments