Commit 369b3685 authored by Taddeüs Kroes's avatar Taddeüs Kroes

Removed obsolete class references

parent 5e9b432e
...@@ -6,5 +6,5 @@ from frame import Frame, ControlFrame, OPCODE_CONTINUATION, OPCODE_TEXT, \ ...@@ -6,5 +6,5 @@ from frame import Frame, ControlFrame, OPCODE_CONTINUATION, OPCODE_TEXT, \
CLOSE_INVALID_DATA, CLOSE_POLICY, CLOSE_MESSAGE_TOOBIG, \ CLOSE_INVALID_DATA, CLOSE_POLICY, CLOSE_MESSAGE_TOOBIG, \
CLOSE_MISSING_EXTENSIONS, CLOSE_UNABLE CLOSE_MISSING_EXTENSIONS, CLOSE_UNABLE
from connection import Connection from connection import Connection
from message import Message, TextMessage, BinaryMessage, JSONMessage from message import Message, TextMessage, BinaryMessage
from errors import SocketClosed from errors import SocketClosed
...@@ -3,7 +3,7 @@ import json ...@@ -3,7 +3,7 @@ import json
from frame import Frame, OPCODE_TEXT, OPCODE_BINARY from frame import Frame, OPCODE_TEXT, OPCODE_BINARY
__all__ = ['Message', 'TextMessage', 'BinaryMessage', 'JSONMessage'] __all__ = ['Message', 'TextMessage', 'BinaryMessage']
class Message(object): class Message(object):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment