python-keystoneclient/keystoneclient/contrib/revoke
Ankit Agrawal 105ad0b080 Use dictionary literal for dictionary creation
Dictionary creation could be rewritten as a dictionary literal.
for example:

token_values = {}
token_values['user_id'] = access.get('user', {}).get('id')

could be rewritten as

token_values = {'user_id': access.get('user', {}).get('id')}

TrivialFix

Change-Id: I0c5677b527d440b8faded31bf4d9d62805391ae3
2015-09-24 06:50:02 -07:00
..
__init__.py Direct move of the revoke model from keystone server 2014-07-09 23:39:02 +00:00
model.py Use dictionary literal for dictionary creation 2015-09-24 06:50:02 -07:00