Strip whitespace from ALL the things.
This commit is contained in:
parent
f6dd8b0a4d
commit
716d7a737b
171 changed files with 807 additions and 807 deletions
|
@ -1 +1 @@
|
|||
from data.model.legacy import *
|
||||
from data.model.legacy import *
|
|
@ -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):
|
||||
|
|
Reference in a new issue