Skip to content

Files

Latest commit

 

History

History
7 lines (4 loc) · 223 Bytes

unnecessary-dict-index-lookup.md

File metadata and controls

7 lines (4 loc) · 223 Bytes

Pattern: Unnecessary dictionary index lookup

Issue: -

Description

Emitted when iterating over the dictionary items (key-item pairs) and accessing the value by index lookup. The value can be accessed directly instead.