Make import statements explicit relative imports

This commit is contained in:
Chuan-Zheng Lee 2019-12-01 19:11:09 -08:00 committed by Stephane Bruckert
parent 2aa67580a1
commit bafef6a175

View File

@ -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 *