diff --git a/tubesync/sync/models/__init__.py b/tubesync/sync/models/__init__.py index 362095e7..41028293 100644 --- a/tubesync/sync/models/__init__.py +++ b/tubesync/sync/models/__init__.py @@ -1,13 +1,21 @@ +# These are referenced from the migration files +# TODO: update migration files to remove +# CommaSepChoiceField and JSONEncoder + from common.json import JSONEncoder from ..fields import CommaSepChoiceField +# Used by migration files and staying here + from .misc import ( get_media_file_path, get_media_thumb_path, media_file_storage, ) +# The actual model classes + from .media import Media from .source import Source from .metadata import Metadata