10000 Fix type hint for SearchResultObject.data (#1401) · stripe/stripe-python@61bc99b · GitHub
[go: up one dir, main page]

Skip to content

Commit 61bc99b

Browse files
authored
Fix type hint for SearchResultObject.data (#1401)
1 parent e5e9dee commit 61bc99b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stripe/_search_result_object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
class SearchResultObject(StripeObject, Generic[T]):
2828
OBJECT_NAME = "search_result"
29-
data: List[StripeObject]
29+
data: List[T]
3030
has_more: bool
3131
next_page: str
3232

0 commit comments

Comments
 (0)
0