diff --git a/bookwyrm/tests/actions/test_readthrough.py b/bookwyrm/tests/actions/test_readthrough.py index fb16edcb..b92c9b65 100644 --- a/bookwyrm/tests/actions/test_readthrough.py +++ b/bookwyrm/tests/actions/test_readthrough.py @@ -2,7 +2,7 @@ from django.test import TestCase, Client from django.utils import timezone from datetime import datetime -from bookwyrm import view_actions as actions, models +from bookwyrm import models class ReadThrough(TestCase): def setUp(self): diff --git a/bookwyrm/views/__init__.py b/bookwyrm/views/__init__.py index e1ffeda4..b8de5d6c 100644 --- a/bookwyrm/views/__init__.py +++ b/bookwyrm/views/__init__.py @@ -15,7 +15,7 @@ from .landing import About, Home, Feed, Discover from .notifications import Notifications from .outbox import Outbox from .reading import edit_readthrough, create_readthrough, delete_readthrough -from .reading import start_reading, finish_reading +from .reading import start_reading, finish_reading, delete_progressupdate from .password import PasswordResetRequest, PasswordReset, ChangePassword from .tag import Tag, AddTag, RemoveTag from .search import Search