aboutsummaryrefslogtreecommitdiff
path: root/discord/gateway.py
diff options
context:
space:
mode:
Diffstat (limited to 'discord/gateway.py')
-rw-r--r--discord/gateway.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/discord/gateway.py b/discord/gateway.py
index bc9a17a2..bf51377f 100644
--- a/discord/gateway.py
+++ b/discord/gateway.py
@@ -44,8 +44,13 @@ from .errors import ConnectionClosed, InvalidArgument
log = logging.getLogger(__name__)
-__all__ = ['DiscordWebSocket', 'KeepAliveHandler', 'VoiceKeepAliveHandler',
- 'DiscordVoiceWebSocket', 'ResumeWebSocket']
+__all__ = (
+ 'DiscordWebSocket',
+ 'KeepAliveHandler',
+ 'VoiceKeepAliveHandler',
+ 'DiscordVoiceWebSocket',
+ 'ResumeWebSocket',
+)
class ResumeWebSocket(Exception):
"""Signals to initialise via RESUME opcode instead of IDENTIFY."""