pylint-errors

R1717 (consider-using-dict-comprehension)

:x: Problematic code:

# to be addded

:heavy_check_mark: Correct code:

# to be added

Rationale:

Emitted when detect the creation of a dictionary using the dict() callable and a transient list. Although there is nothing syntactically wrong with this code, it is hard to read and can be simplified to a dict comprehension. Also it is faster since you don’t need to create another transient list.