From 6ce46c31973cb8c32c0161398d10a93274a402df Mon Sep 17 00:00:00 2001 From: Chris Hines <chris.hines@monash.edu> Date: Wed, 22 Jul 2020 16:33:49 +1000 Subject: [PATCH] missing import --- twsproxy/server/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/twsproxy/server/__init__.py b/twsproxy/server/__init__.py index 5c522f0..2eba52f 100644 --- a/twsproxy/server/__init__.py +++ b/twsproxy/server/__init__.py @@ -5,6 +5,7 @@ class TWSServer: import socket def __init__(self,port,maxconn,stop=None): + import threading self.port = port self.maxconn = maxconn if stop is None: -- GitLab