Skip to content

Commit

Permalink
doc: add ~ prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
null8626 committed Oct 14, 2024
1 parent e535b62 commit 286a46c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions topgg/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ class DBLClient(DataContainerMixin):
token (:obj:`str`): Your bot's Top.gg API Token.
Keyword Args:
session (:class:`aiohttp.ClientSession`)
session (:class:`~aiohttp.ClientSession`)
An `aiohttp session`_ to use for requests to the API.
**kwargs:
Arbitrary kwargs to be passed to :class:`aiohttp.ClientSession` if session was not provided.
Arbitrary kwargs to be passed to :class:`~aiohttp.ClientSession` if session was not provided.
"""

__slots__: t.Tuple[str, ...] = ("http", "bot_id", "_token", "_is_closed", "_autopost")
Expand Down
2 changes: 1 addition & 1 deletion topgg/webhook.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def app(self) -> web.Application:
"""Returns the internal web application that handles webhook requests.
Returns:
:class:`aiohttp.web.Application`:
:class:`~aiohttp.web.Application`:
The internal web application.
"""
return self.__app
Expand Down

0 comments on commit 286a46c

Please sign in to comment.