e1342d8 Use dict literal to create dict

Authored and Committed by cqi 4 years ago
    Use dict literal to create dict
    
    Some code create a dict in this way:
    
    some_var = {}
    some_var["a"] = 100
    some_var["b"] = 200
    
    Using dict literal could make these lines a little bit simpler.
    
    Signed-off-by: Chenxiong Qi <cqi@redhat.com>
    
        
file modified
+12 -10