From 7469ff5bd67a3c9bf8cbfa6f0ba3a89aed628902 Mon Sep 17 00:00:00 2001 From: jesopo Date: Fri, 22 Feb 2019 10:26:31 +0000 Subject: [PATCH] Remove unused `threading` import in line_handler.py --- modules/line_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/line_handler.py b/modules/line_handler.py index 1ba73ea8..242eb035 100644 --- a/modules/line_handler.py +++ b/modules/line_handler.py @@ -1,4 +1,4 @@ -import codecs, enum, re, threading +import codecs, enum, re from src import ModuleManager, utils RE_ISUPPORT_ESCAPE = re.compile(r"\\x(\d\d)", re.I)