From d96f6efc747614fbf81fd3af88cd2825192dcd78 Mon Sep 17 00:00:00 2001 From: Samuel Sloniker Date: Thu, 17 Jun 2021 15:46:02 -0700 Subject: [PATCH] The Client object doesn't use the Queue anymore --- server/wss.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/server/wss.py b/server/wss.py index e040aa8..127667b 100644 --- a/server/wss.py +++ b/server/wss.py @@ -6,7 +6,6 @@ import random import time import shutil import tempfile -import queue from websocket_server import WebsocketServer @@ -38,7 +37,6 @@ class Client: def __init__(self, client, server): self.client = client self.server = server - self.queue = queue.Queue() self.items = {} self.lock = threading.Lock() self.good = True