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 e2ff8906..eb7d9ccd 100644
--- a/netlib/websockets/frame.py
+++ b/netlib/websockets/frame.py
@@ -43,7 +43,7 @@ CLOSE_REASON = utils.BiDi(
)
-class FrameHeader():
+class FrameHeader:
def __init__(
self,
@@ -193,7 +193,7 @@ class FrameHeader():
return False
-class Frame():
+class Frame:
"""
Represents a single WebSockets frame.
Constructor takes human readable forms of the frame components.