From bafef6a175116aff519579822f2382e8fbbd8808 Mon Sep 17 00:00:00 2001 From: Chuan-Zheng Lee Date: Sun, 1 Dec 2019 19:11:09 -0800 Subject: [PATCH] Make import statements explicit relative imports --- spotipy/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spotipy/__init__.py b/spotipy/__init__.py index ac0f074..b218c0a 100644 --- a/spotipy/__init__.py +++ b/spotipy/__init__.py @@ -1,5 +1,5 @@ VERSION='2.4.5' -from client import * -from oauth2 import * -from util import * +from .client import * +from .oauth2 import * +from .util import *