diff options
| author | Rapptz <[email protected]> | 2018-03-06 09:10:13 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-03-06 09:10:13 -0500 |
| commit | 61c8e35929e51ed47660d5691aab3ab68af15ced (patch) | |
| tree | 4eea3514d7060d06053e94407a583821f1df2a9a | |
| parent | Fix session_id in Spotify.to_dict (diff) | |
| download | discord.py-61c8e35929e51ed47660d5691aab3ab68af15ced.tar.xz discord.py-61c8e35929e51ed47660d5691aab3ab68af15ced.zip | |
Missing import for _ActivityTag inside Client
| -rw-r--r-- | discord/client.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/discord/client.py b/discord/client.py index e8309f1c..e1fabc9a 100644 --- a/discord/client.py +++ b/discord/client.py @@ -31,6 +31,7 @@ from .guild import Guild from .errors import * from .enums import Status, VoiceRegion from .gateway import * +from .activity import _ActivityTag from .voice_client import VoiceClient from .http import HTTPClient from .state import ConnectionState |