aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/websockets/frame.py
diff options
context:
space:
mode:
Diffstat (limited to 'netlib/websockets/frame.py')
-rw-r--r--netlib/websockets/frame.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/netlib/websockets/frame.py b/netlib/websockets/frame.py
index 2b36d461..e2ff8906 100644
--- a/netlib/websockets/frame.py
+++ b/netlib/websockets/frame.py
@@ -43,7 +43,7 @@ CLOSE_REASON = utils.BiDi(
)
-class FrameHeader(object):
+class FrameHeader():
def __init__(
self,
@@ -193,7 +193,7 @@ class FrameHeader(object):
return False
-class Frame(object):
+class Frame():
"""
Represents a single WebSockets frame.
Constructor takes human readable forms of the frame components.