[Python-modules-commits] [python-social-auth] 19/322: PEP8
Wolfgang Borgert
debacle at moszumanska.debian.org
Sat Dec 24 15:12:43 UTC 2016
This is an automated email from the git hooks/post-receive script.
debacle pushed a commit to tag v0.2.10
in repository python-social-auth.
commit 73c85f804a25ce17bcd47628dd1fb7c1387965fd
Author: Matías Aguirre <matiasaguirre at gmail.com>
Date: Sat Nov 1 23:06:52 2014 -0200
PEP8
---
social/storage/base.py | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/social/storage/base.py b/social/storage/base.py
index d32a054..4520a3d 100644
--- a/social/storage/base.py
+++ b/social/storage/base.py
@@ -188,9 +188,8 @@ class AssociationMixin(object):
kwargs = {'server_url': server_url}
if handle is not None:
kwargs['handle'] = handle
- return sorted([
- (assoc.id, cls.openid_association(assoc))
- for assoc in cls.get(**kwargs)
+ return sorted([(assoc.id, cls.openid_association(assoc))
+ for assoc in cls.get(**kwargs)
], key=lambda x: x[1].issued, reverse=True)
@classmethod
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-social-auth.git
More information about the Python-modules-commits
mailing list