Strip whitespace from ALL the things.

This commit is contained in:
Jimmy Zelinskie 2014-11-24 16:07:38 -05:00
parent f6dd8b0a4d
commit 716d7a737b
171 changed files with 807 additions and 807 deletions

View file

@ -1 +1 @@
from data.model.legacy import *
from data.model.legacy import *

View file

@ -102,7 +102,7 @@ class DatabaseAuthorizationProvider(AuthorizationProvider):
.get())
return found.data
except OAuthAccessToken.DoesNotExist:
return None
return None
def persist_authorization_code(self, client_id, code, scope):
app = OAuthApplication.get(client_id=client_id)
@ -261,7 +261,7 @@ def list_access_tokens_for_user(user):
.join(User)
.where(OAuthAccessToken.authorized_user == user))
return query
return query
def list_applications_for_org(org):