Ignore false flake8 error
This commit is contained in:
parent
c00cfc735a
commit
e2d2931237
|
|
@ -35,7 +35,7 @@ class WebSocketEcho(WebSockifyRequestHandler):
|
|||
|
||||
cqueue = []
|
||||
c_pend = 0
|
||||
cpartial = ""
|
||||
cpartial = "" # noqa: F841
|
||||
rlist = [self.request]
|
||||
|
||||
while True:
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
from websockify.websocket import *
|
||||
from websockify.websocketproxy import *
|
||||
from websockify.websocket import * # noqa: F401,F403
|
||||
from websockify.websocketproxy import * # noqa: F401,F403
|
||||
|
|
|
|||
Loading…
Reference in New Issue