Move importers into module
This commit is contained in:
parent
1f0c4f86c2
commit
754ccaedd6
8 changed files with 16 additions and 10 deletions
1
bookwyrm/tests/importers/__init__.py
Normal file
1
bookwyrm/tests/importers/__init__.py
Normal file
|
@ -0,0 +1 @@
|
|||
from . import *
|
|
@ -7,8 +7,8 @@ from unittest.mock import patch
|
|||
from django.test import TestCase
|
||||
import responses
|
||||
|
||||
from bookwyrm import models, importer
|
||||
from bookwyrm.goodreads_import import GoodreadsImporter
|
||||
from bookwyrm import models
|
||||
from bookwyrm.importers import importer, GoodreadsImporter
|
||||
from bookwyrm.settings import DOMAIN
|
||||
|
||||
|
|
@ -6,8 +6,8 @@ from unittest.mock import patch
|
|||
from django.test import TestCase
|
||||
import responses
|
||||
|
||||
from bookwyrm import models, importer
|
||||
from bookwyrm.librarything_import import LibrarythingImporter
|
||||
from bookwyrm import models
|
||||
from bookwyrm.importers import importer, LibrarythingImporter
|
||||
from bookwyrm.settings import DOMAIN
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue