Fix relative import

This commit is contained in:
codingo
2019-01-06 13:04:12 +10:00
parent 621537e001
commit 2b13023e14
2 changed files with 5 additions and 4 deletions

View File

@@ -1,8 +1,8 @@
#!/usr/bin/python3 #!/usr/bin/python3
import sys import sys
from .lib.core.input import InputParser, InputHelper from Interlace.lib.core.input import InputParser, InputHelper
from .lib.core.output import OutputHelper, Level from Interlace.lib.core.output import OutputHelper, Level
from .lib.threader import Pool from Interlace.lib.threader import Pool
def build_queue(arguments, output): def build_queue(arguments, output):

View File

@@ -1,8 +1,9 @@
from colorclass import Color from colorclass import Color
from colorclass import disable_all_colors, enable_all_colors, is_enabled from colorclass import disable_all_colors, enable_all_colors, is_enabled
from time import localtime, strftime from time import localtime, strftime
from .lib.core.__version__ import __version__
from enum import IntEnum from enum import IntEnum
from Interlace.lib.core.__version__ import __version__
class OutputHelper(object): class OutputHelper(object):
def __init__(self, arguments): def __init__(self, arguments):