mirror of
https://github.com/codingo/Interlace.git
synced 2025-12-18 23:34:19 +01:00
Fix relative import
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
#!/usr/bin/python3
|
||||
import sys
|
||||
from .lib.core.input import InputParser, InputHelper
|
||||
from .lib.core.output import OutputHelper, Level
|
||||
from .lib.threader import Pool
|
||||
from Interlace.lib.core.input import InputParser, InputHelper
|
||||
from Interlace.lib.core.output import OutputHelper, Level
|
||||
from Interlace.lib.threader import Pool
|
||||
|
||||
|
||||
def build_queue(arguments, output):
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
from colorclass import Color
|
||||
from colorclass import disable_all_colors, enable_all_colors, is_enabled
|
||||
from time import localtime, strftime
|
||||
from .lib.core.__version__ import __version__
|
||||
from enum import IntEnum
|
||||
from Interlace.lib.core.__version__ import __version__
|
||||
|
||||
|
||||
class OutputHelper(object):
|
||||
def __init__(self, arguments):
|
||||
|
||||
Reference in New Issue
Block a user