Ignore false flake8 error

This commit is contained in:
Takashi Kajinami 2025-06-12 22:48:38 +09:00
parent c00cfc735a
commit e2d2931237
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ class WebSocketEcho(WebSockifyRequestHandler):
cqueue = []
c_pend = 0
cpartial = ""
cpartial = "" # noqa: F841
rlist = [self.request]
while True:

View File

@ -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