Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed May 9, 2018
1 parent 82a5b34 commit 909c003
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lomond/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ class Binary(Message):
"""
__slots__ = ['data']

def __init__(self, data):
self.data = data
super(Binary, self).__init__(Opcode.BINARY)
Expand All @@ -96,6 +97,7 @@ class Text(Message):
"""
__slots__ = ['text']

def __init__(self, text):
self.text = text
super(Text, self).__init__(Opcode.TEXT)
Expand Down Expand Up @@ -123,6 +125,7 @@ class Close(Message):
"""
__slots__ = ['code', 'reason']

def __init__(self, code, reason):
self.code = code
self.reason = reason
Expand Down Expand Up @@ -165,6 +168,7 @@ class Ping(Message):
"""
__slots__ = ['data']

def __init__(self, data):
self.data = data
super(Ping, self).__init__(Opcode.PING)
Expand All @@ -180,6 +184,7 @@ class Pong(Message):
"""
__slots__ = ['data']

def __init__(self, data):
self.data = data
super(Pong, self).__init__(Opcode.PONG)
Expand Down

0 comments on commit 909c003

Please sign in to comment.