8000 Fix test helper async · stripe/stripe-python@8d0e40e · GitHub
[go: up one dir, main page]

Skip to content

Commit 8d0e40e

Browse files
Fix test helper async
1 parent 7941b34 commit 8d0e40e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stripe/_test_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def _static_request(cls, *args, **kwargs):
3131

3232
@classmethod
3333
async def _static_request_async(cls, *args, **kwargs):
34-
return cls._resource_cls._static_request_async(*args, **kwargs)
34+
return await cls._resource_cls._static_request_async(*args, **kwargs)
3535

3636
@classmethod
3737
def _static_request_stream(cls, *args, **kwargs):

0 commit comments

Comments
 (0)
0