From 184e54df520be22e04eca8b1b74fe916974cd20c Mon Sep 17 00:00:00 2001 From: Xevion Date: Sun, 3 Nov 2019 03:58:04 -0600 Subject: [PATCH] change to relative imports to cope with the interdimensional imports --- app/spotify_explicit/main.py | 6 +++--- app/spotify_explicit/pull.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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