1
0
Fork 0

remove unused imports

This commit is contained in:
Kevin Matz 2020-11-23 12:32:06 -05:00
parent ef37f016d4
commit 9ccf773ebc
2 changed files with 1 additions and 3 deletions

View File

@ -1,12 +1,11 @@
"""OscCommentMacroListener.py: Hog 4 comment macro antlr4 listener for OSC.""" """OscCommentMacroListener.py: Hog 4 comment macro antlr4 listener for OSC."""
import logging import logging
from time import sleep
from .commentmacro.CommentMacroParser import CommentMacroParser from .commentmacro.CommentMacroParser import CommentMacroParser
from .commentmacro.CommentMacroListener import CommentMacroListener from .commentmacro.CommentMacroListener import CommentMacroListener
from .hog4 import HogNet
# https://raw.githubusercontent.com/jszheng/py3antlr4book/master/bin/pygrun # https://raw.githubusercontent.com/jszheng/py3antlr4book/master/bin/pygrun
# this is a python version of TestRig # this is a python version of TestRig

View File

@ -2,7 +2,6 @@
import configparser import configparser
import logging import logging
import sys
from antlr4 import CommonTokenStream, InputStream, ParseTreeWalker from antlr4 import CommonTokenStream, InputStream, ParseTreeWalker
from antlr4.error.ErrorListener import ErrorListener from antlr4.error.ErrorListener import ErrorListener