From 4d12d4141f110879975d0fdd5f2ff1311cc6bd03 Mon Sep 17 00:00:00 2001 From: nathom Date: Mon, 19 Apr 2021 16:08:22 -0700 Subject: [PATCH] Rename downloader.py to tracklists.py --- streamrip/core.py | 3 ++- streamrip/{downloader.py => tracklists.py} | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename streamrip/{downloader.py => tracklists.py} (100%) diff --git a/streamrip/core.py b/streamrip/core.py index e007762..e6e7d41 100644 --- a/streamrip/core.py +++ b/streamrip/core.py @@ -24,7 +24,8 @@ from .constants import ( URL_REGEX, ) from .db import MusicDB -from .downloader import Album, Artist, Label, Playlist, Track, Tracklist, Video +from .bases import Track, Video +from .tracklists import Album, Artist, Label, Playlist, Tracklist from .exceptions import ( AuthenticationError, NonStreamable, diff --git a/streamrip/downloader.py b/streamrip/tracklists.py similarity index 100% rename from streamrip/downloader.py rename to streamrip/tracklists.py