Reports situations when you can rewrite dictionary creation by using a dictionary literal.
This approach brings performance improvements.
Example:
dic = {} dic['var'] = 1
When the quick-fix is applied, the code changes to:
dic = {'var': 1}