1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-21 12:23:00 +00:00

relative imports

This commit is contained in:
Jörn-Michael Miehe 2021-12-02 17:33:07 +01:00
parent c8b69c73a9
commit 229beaafd7

View file

@ -5,10 +5,10 @@ from typing import TypeVar, Iterable, Type, Optional, List
import click
from kiwi_scp.instance import Instance
from kiwi_scp.project import Project
from kiwi_scp.services import Services
from kiwi_scp.wstring import WParagraph, WAlignment
from ..instance import Instance
from ..project import Project
from ..services import Services
from ..wstring import WParagraph, WAlignment
_logger = logging.getLogger(__name__)