Skip to content
This repository has been archived by the owner on Apr 27, 2021. It is now read-only.

Commit

Permalink
📝 Docs fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthurdw committed Apr 4, 2021
1 parent 95ae276 commit 056f51e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ Represents your Dogehouse client.
* `muted` *(bool, optional)*: Wether or not the client should be muted. Defaults to False.
* `reconnect_voice` *(bool, optional)*: When the client disconnects from the voice server, should it try to reconnect. Defaults to False.
* `prefix` *(List of strings or a string, optional)*: The bot prefix.
* `telemetry` *(bool)*: Wheter you want your bot statistics to be sent to [stats.dogehouse.xyz](https://stats.dogehouse.xyz/). Defaults to False.
* `telemetry` *(telemetry object)*: The telemetry class that will be used. Defaults to None.

#### `async` run(): :id=dogeclient-run

Expand Down
2 changes: 1 addition & 1 deletion dogehouse/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def __init__(self, token: str, refresh_token: str, *, room: str = None, muted: b
muted (bool, optional): Wether or not the client should be muted. Defaults to False.
reconnect_voice (bool, optional): When the client disconnects from the voice server, should it try to reconnect. Defaults to False.
prefix (List of strings or a string, optional): The bot prefix.
telemetry (bool, optional): Whether or not you want to enable telemetry for your bot. Defaults to False.
telemetry (telemetry class, optional): The telemetry class that will be used. Defaults to None.
"""
super().__init__(None, room, [], prefix)

Expand Down

0 comments on commit 056f51e

Please sign in to comment.