Skip to content

Commit f09e710

Browse files
committed
docs: add now missing doc strings for UserAuthenticator
1 parent 4f6bc49 commit f09e710

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

twitchAPI/oauth.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,8 +323,11 @@ def __init__(self,
323323
</html>"""
324324
"""The document that will be rendered at the end of the flow"""
325325
self.port: int = port
326+
"""The port that will be used for the webserver. |default| :code:`17653`"""
326327
self.host: str = host
328+
"""The host the webserver will bind to. |default| :code:`0.0.0.0`"""
327329
self.state: str = str(get_uuid())
330+
"""The state to be used for identification, |default| a random UUID"""
328331
self._callback_func = None
329332
self._server_running: bool = False
330333
self._loop: Union[asyncio.AbstractEventLoop, None] = None

0 commit comments

Comments
 (0)