File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ def list_marketplaces(self, filters=None):
5353
5454 :param dict|Query filters: Filters to pass to the request.
5555 :return: A list with the marketplaces that match the given filters.
56- :rtype: list[Asset ]
56+ :rtype: list[Marketplace ]
5757 """
5858 query = self ._get_filters_query (filters , False )
5959 text , code = ApiClient (self ._config , 'marketplaces' + query .compile ()).get ()
@@ -64,7 +64,7 @@ def get_marketplace(self, marketplace_id):
6464
6565 :param str marketplace_id: The id of the marketplace.
6666 :return: The asset with the given id, or ``None`` if such asset does not exist.
67- :rtype: Asset |None
67+ :rtype: Marketplace |None
6868 """
6969 text , code = ApiClient (self ._config , 'marketplaces/' + marketplace_id ).get ()
7070 return Marketplace .deserialize (text )
You can’t perform that action at this time.
0 commit comments