diff --git a/app/spotify_explicit/main.py b/app/spotify_explicit/main.py index bba6f25..707a61c 100644 --- a/app/spotify_explicit/main.py +++ b/app/spotify_explicit/main.py @@ -2,9 +2,9 @@ import os import sys import time import json -import auth -import pull -import process +from . import auth +from . import pull +from . import process import logging diff --git a/app/spotify_explicit/pull.py b/app/spotify_explicit/pull.py index da4e202..618b740 100644 --- a/app/spotify_explicit/pull.py +++ b/app/spotify_explicit/pull.py @@ -1,6 +1,6 @@ import os import sys -import auth +from . import auth import json import shutil import pprint