Use relative version imports for plugins

This commit is contained in:
MinchinWeb 2021-06-26 21:42:48 -06:00
parent e0536e7e5e
commit 9ae0e6efb3
11 changed files with 11 additions and 11 deletions

View file

@ -7,7 +7,7 @@ from collections import Counter
from jrnl.plugins.base import BaseExporter from jrnl.plugins.base import BaseExporter
from jrnl.__version__ import __version__ from ...__version__ import __version__
class Exporter(BaseExporter): class Exporter(BaseExporter):

View file

@ -9,7 +9,7 @@ from textwrap import TextWrapper
from jrnl.plugins.base import BaseExporter from jrnl.plugins.base import BaseExporter
from jrnl.plugins.util import check_provided_linewrap_viability from jrnl.plugins.util import check_provided_linewrap_viability
from jrnl.__version__ import __version__ from ...__version__ import __version__
class Exporter(BaseExporter): class Exporter(BaseExporter):

View file

@ -8,7 +8,7 @@ import json
from jrnl.plugins.base import BaseExporter from jrnl.plugins.base import BaseExporter
from jrnl.plugins.util import get_tags_count from jrnl.plugins.util import get_tags_count
from jrnl.__version__ import __version__ from ...__version__ import __version__
class Exporter(BaseExporter): class Exporter(BaseExporter):

View file

@ -11,7 +11,7 @@ from jrnl.color import RESET_COLOR
from jrnl.color import WARNING_COLOR from jrnl.color import WARNING_COLOR
from jrnl.plugins.base import BaseExporter from jrnl.plugins.base import BaseExporter
from jrnl.__version__ import __version__ from ...__version__ import __version__
class Exporter(BaseExporter): class Exporter(BaseExporter):

View file

@ -5,7 +5,7 @@
from jrnl.plugins.base import BaseExporter from jrnl.plugins.base import BaseExporter
from jrnl.__version__ import __version__ from ...__version__ import __version__
class Exporter(BaseExporter): class Exporter(BaseExporter):

View file

@ -5,7 +5,7 @@
from jrnl.plugins.base import BaseExporter from jrnl.plugins.base import BaseExporter
from jrnl.__version__ import __version__ from ...__version__ import __version__
class Exporter(BaseExporter): class Exporter(BaseExporter):

View file

@ -7,7 +7,7 @@
from jrnl.plugins.base import BaseExporter from jrnl.plugins.base import BaseExporter
from jrnl.plugins.util import get_tags_count from jrnl.plugins.util import get_tags_count
from jrnl.__version__ import __version__ from ...__version__ import __version__
class Exporter(BaseExporter): class Exporter(BaseExporter):

View file

@ -5,7 +5,7 @@
from jrnl.plugins.base import BaseExporter from jrnl.plugins.base import BaseExporter
from jrnl.__version__ import __version__ from ...__version__ import __version__
class Exporter(BaseExporter): class Exporter(BaseExporter):

View file

@ -8,7 +8,7 @@ from xml.dom import minidom
from jrnl.plugins.base import BaseExporter from jrnl.plugins.base import BaseExporter
from jrnl.plugins.util import get_tags_count from jrnl.plugins.util import get_tags_count
from jrnl.__version__ import __version__ from ...__version__ import __version__
class Exporter(BaseExporter): class Exporter(BaseExporter):

View file

@ -12,7 +12,7 @@ from jrnl.color import RESET_COLOR
from jrnl.color import WARNING_COLOR from jrnl.color import WARNING_COLOR
from jrnl.plugins.base import BaseExporter from jrnl.plugins.base import BaseExporter
from jrnl.__version__ import __version__ from ...__version__ import __version__
class Exporter(BaseExporter): class Exporter(BaseExporter):

View file

@ -7,7 +7,7 @@ import sys
from jrnl.plugins.base import BaseImporter from jrnl.plugins.base import BaseImporter
from jrnl.__version__ import __version__ from ...__version__ import __version__
class Importer(BaseImporter): class Importer(BaseImporter):