1
0
Fork 0

use intra-package references for imports

This commit is contained in:
Kevin Matz 2019-11-01 10:25:08 -04:00
parent 04994f6804
commit c1a7ad48b2
3 changed files with 6 additions and 6 deletions

View File

@ -16,8 +16,8 @@ __status__ = "Prototype"
import logging
from CommentMacroParser import CommentMacroParser
from CommentMacroListener import CommentMacroListener
from .CommentMacroParser import CommentMacroParser
from .CommentMacroListener import CommentMacroListener
from pythonosc import osc_message_builder
from time import sleep

View File

@ -1 +1 @@
__all__ = ["comment"]
__all__ = ["comment", "CommentMacroLexer", "CommentMacroListener", "CommentMacroParser", "OscCommentMacroListener"]

View File

@ -23,9 +23,9 @@ from antlr4 import CommonTokenStream
from antlr4 import InputStream
from antlr4 import ParseTreeWalker
from antlr4.error.ErrorListener import ErrorListener
from CommentMacroLexer import CommentMacroLexer
from CommentMacroParser import CommentMacroParser
from OscCommentMacroListener import OscCommentMacroListener
from .CommentMacroLexer import CommentMacroLexer
from .CommentMacroParser import CommentMacroParser
from .OscCommentMacroListener import OscCommentMacroListener
from pythonosc import udp_client