Files
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
..