diff --git a/crates/ruff_linter/src/rules/pylint/rules/dict_iter_missing_items.rs b/crates/ruff_linter/src/rules/pylint/rules/dict_iter_missing_items.rs index 5296d477ef..fd925ff683 100644 --- a/crates/ruff_linter/src/rules/pylint/rules/dict_iter_missing_items.rs +++ b/crates/ruff_linter/src/rules/pylint/rules/dict_iter_missing_items.rs @@ -33,6 +33,7 @@ use crate::checkers::ast::Checker; /// /// for city, population in data.items(): /// print(f"{city} has population {population}.") +/// ``` /// /// ## Known problems /// If the dictionary key is a tuple, e.g.: