summaryrefslogtreecommitdiffstats
path: root/shared_thread_data.py
diff options
context:
space:
mode:
Diffstat (limited to 'shared_thread_data.py')
-rw-r--r--shared_thread_data.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/shared_thread_data.py b/shared_thread_data.py
deleted file mode 100644
index ba0a419..0000000
--- a/shared_thread_data.py
+++ /dev/null
@@ -1,9 +0,0 @@
-import threading
-
-class SharedThreadData:
- def __init__(self, cfg):
- self.word = ""
- self.word_lock = threading.Lock()
- self.exit_event = threading.Event()
- self.cfg = cfg
-