mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-18 12:08:31 +02:00
Use relative version imports for plugins
This commit is contained in:
parent
e0536e7e5e
commit
9ae0e6efb3
11 changed files with 11 additions and 11 deletions
|
@ -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):
|
||||||
|
|
|
@ -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):
|
||||||
|
|
|
@ -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):
|
||||||
|
|
|
@ -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):
|
||||||
|
|
|
@ -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):
|
||||||
|
|
|
@ -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):
|
||||||
|
|
|
@ -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):
|
||||||
|
|
|
@ -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):
|
||||||
|
|
|
@ -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):
|
||||||
|
|
|
@ -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):
|
||||||
|
|
|
@ -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):
|
||||||
|
|
Loading…
Add table
Reference in a new issue