From 9ccf773ebc3d9c6f8104e6698a1407bd0f766d27 Mon Sep 17 00:00:00 2001 From: kevin Date: Mon, 23 Nov 2020 12:32:06 -0500 Subject: [PATCH] remove unused imports --- bacon/OscListener.py | 3 +-- bacon/script.py | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/bacon/OscListener.py b/bacon/OscListener.py index 9fd1ab9..7f0ae80 100644 --- a/bacon/OscListener.py +++ b/bacon/OscListener.py @@ -1,12 +1,11 @@ """OscCommentMacroListener.py: Hog 4 comment macro antlr4 listener for OSC.""" import logging +from time import sleep from .commentmacro.CommentMacroParser import CommentMacroParser from .commentmacro.CommentMacroListener import CommentMacroListener -from .hog4 import HogNet - # https://raw.githubusercontent.com/jszheng/py3antlr4book/master/bin/pygrun # this is a python version of TestRig diff --git a/bacon/script.py b/bacon/script.py index 220b6a0..4bd5720 100644 --- a/bacon/script.py +++ b/bacon/script.py @@ -2,7 +2,6 @@ import configparser import logging -import sys from antlr4 import CommonTokenStream, InputStream, ParseTreeWalker from antlr4.error.ErrorListener import ErrorListener