1
0
mirror of https://github.com/gryf/ebook-converter.git synced 2026-04-24 15:11:30 +02:00

Cut off cross importing things.

There was (and perhaps it exists in other modules, need to check) a bad
habit of importing objects out of module A into B just to be able of
import those object from module B. In this case there was import from
module config_base into module config. This commit fix this.
This commit is contained in:
2020-09-06 18:23:05 +02:00
parent de22960d26
commit 6fdcc029bb
8 changed files with 14 additions and 23 deletions
+2 -2
View File
@@ -173,7 +173,7 @@ def read_series(root):
def read_user_metadata(mi, root):
from ebook_converter.utils.config import from_json
from ebook_converter.utils.config_base import from_json
from ebook_converter.ebooks.metadata.book.json_codec import \
decode_is_multiple
fields = set()
@@ -452,7 +452,7 @@ def create_series(calibre, series, series_index):
def create_user_metadata(calibre, all_user_metadata):
from ebook_converter.utils.config import to_json
from ebook_converter.utils.config_base import to_json
from ebook_converter.ebooks.metadata.book.json_codec import \
object_to_unicode, encode_is_multiple