updated Queue and ConfigParser to use 2/3 compatible imports

This commit is contained in:
bharnden 2019-05-05 21:49:42 -07:00
parent b58d32c156
commit 864c7b69a1
6 changed files with 9 additions and 7 deletions

View file

@ -3,8 +3,8 @@ import logging
import os
import tempfile
import time
from Queue import Queue, Empty
from builtins import int
from queue import Queue, Empty
import grpc
from concurrent import futures