From ce47476f4cb23b65c0dbbb2ce3c90c76dc2f6fa4 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sun, 26 Jun 2016 21:33:56 +0100 Subject: [PATCH] docs: clean up docstrings --- steam/webapi.py | 4 ++-- steam/webauth.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/steam/webapi.py b/steam/webapi.py index e0de065..df20bdb 100644 --- a/steam/webapi.py +++ b/steam/webapi.py @@ -100,7 +100,7 @@ class WebAPI(object): self.http_timeout = http_timeout #: HTTP timeout in seconds self.apihost = apihost #: ..versionadded:: 0.8.3 apihost hostname self.interfaces = [] #: list of all interfaces - self.session = _make_session() #: :class:`requests.Session` from :func:`steam.util.web.make_requests_session` + self.session = _make_session() #: :class:`requests.Session` from :func:`.make_requests_session` if auto_load_interfaces: self.load_interfaces(self.fetch_interfaces()) @@ -118,7 +118,7 @@ class WebAPI(object): :return: :class:`dict` of all interfaces and methods - The returned value can passed to :py:func:`WebAPI.load_interfaces` + The returned value can passed to :meth:`load_interfaces` """ return get('ISteamWebAPIUtil', 'GetSupportedAPIList', 1, https=self.https, diff --git a/steam/webauth.py b/steam/webauth.py index 19a8aa2..d881bfe 100644 --- a/steam/webauth.py +++ b/steam/webauth.py @@ -10,7 +10,7 @@ The session can be used to access ``steamcommunity.com``, ``store.steampowered.c Keep in mind if you are trying to write robust code. .. note:: - If you are using :class:`steam.client.SteamClient`, use :meth:`steam.client.builtins.web.Web.get_web_session()` + If you are using :class:`.SteamClient` take a look at :meth:`.get_web_session()` .. note:: If you need to authenticate as a mobile device for things like trading confirmations @@ -78,7 +78,7 @@ class WebAuth(object): complete = False #: whether authentication has been completed successfully session = None #: :class:`requests.Session` (with auth cookies after auth is complete) captcha_gid = -1 - steam_id = None #: :class:`steam.steamid.SteamID` (after auth is complete) + steam_id = None #: :class:`.SteamID` (after auth is complete) def __init__(self, username, password): self.__dict__.update(locals())