Skip to content

Commit

Permalink
Remove python2 legacy Queue import
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Friedman <25047695+Ryanf55@users.noreply.github.com>
  • Loading branch information
Ryanf55 committed Nov 12, 2024
1 parent 8109ec7 commit 12ca988
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions app/cesium_web_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@
import tornado.httpserver
import logging

import os, json, sys, select, signal, threading
try:
import Queue as queue
except ImportError:
import queue
import os, json, queue, sys, select, signal, threading

lock = threading.Lock()
live_web_sockets = set()
Expand Down

0 comments on commit 12ca988

Please sign in to comment.