Skip to content

Files

Latest commit

 

History

History
7 lines (4 loc) · 263 Bytes

consider-using-dict-items.md

File metadata and controls

7 lines (4 loc) · 263 Bytes

Pattern: Missing use of .items()

Issue: -

Description

Emitted when iterating over the keys of a dictionary and accessing the value by index lookup. Both the key and value can be accessed by iterating using the .items() method of the dictionary instead.