billing: Mention the exact return type for mock functions.

This commit is contained in:
Vishnu Ks
2018-07-27 09:54:36 +00:00
committed by Rishi Gupta
parent 8bcd4131fe
commit 036ad03b3a
2 changed files with 5 additions and 6 deletions

View File

@@ -1,5 +1,4 @@
from typing import Any, Dict
from stripe.api_resources.list_object import ListObject
def convert_to_stripe_object(fixture_data: Dict[Any, Any]) -> ListObject:
def convert_to_stripe_object(fixture_data: Dict[Any, Any]) -> Any:
...