Move importers into module
This commit is contained in:
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
|
||||
|
||||
|
Reference in New Issue
Block a user