pep8 - round 3

This commit is contained in:
Rob Weber
2019-11-26 10:49:17 -06:00
parent 95649c2b3f
commit 88341d9e1f
4 changed files with 12 additions and 9 deletions

View File

@@ -33,7 +33,7 @@ class DropboxAuthorizer:
def isAuthorized(self):
user_token = self._getToken()
return user_token != ''
return user_token != ''
def authorize(self):
result = True
@@ -66,7 +66,7 @@ class DropboxAuthorizer:
utils.log("Error: %s" % (e,))
result = False
return result;
return result
# return the DropboxClient, or None if can't be created
def getClient(self):