From 502a56f98713bcb8415e7f6e742160b012863790 Mon Sep 17 00:00:00 2001 From: Sandeep Murthy Date: Sat, 17 Feb 2018 12:00:29 +0000 Subject: [PATCH] Remove relative imports in `spotify` package initialiser --- spotipy/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spotipy/__init__.py b/spotipy/__init__.py index 9a64643..95c0814 100644 --- a/spotipy/__init__.py +++ b/spotipy/__init__.py @@ -1,5 +1,5 @@ VERSION='2.0.1' -from .client import * -from .oauth2 import * +from client import * +from oauth2 import * from util import *