From 42069825a2e60b474fce73fda0e500e37d474856 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Thu, 30 Apr 2020 00:08:35 +0100 Subject: [PATCH] fix a couple of code blocks in docstrings --- steam/client/builtins/apps.py | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/steam/client/builtins/apps.py b/steam/client/builtins/apps.py index d8d3b5c..3d1f7df 100644 --- a/steam/client/builtins/apps.py +++ b/steam/client/builtins/apps.py @@ -62,6 +62,7 @@ class Apps(object): the account has a license. .. code:: python + result = client.get_product_info(apps=[123]) if result['apps'][123]['_missing_token']: @@ -264,23 +265,19 @@ class Apps(object): def request_free_license(self, app_ids): """ Request license for free app(s) - + :param app_ids: list of app ids :type app_ids: :class:`list` - :return: format ``(eresult, result_details, receipt_info)`` + :return: format (:class:`.EResult`, result_details, receipt_info) :rtype: :class:`tuple` - - .. code:: python - [730] [] - """ resp = self.send_job_and_wait(MsgProto(EMsg.ClientRequestFreeLicense), {'appids': map(int, app_ids)}, timeout=10, ) - + if resp: return EResult(resp.eresult), resp.granted_appids, resp.granted_packageids - + else: - return EResult.Timeout, None, None + return EResult.Timeout, None, None