Skip to content

Commit ff6935b

Browse files
authored
Merge pull request RustPython#1971 from youknowone/fix-clippy
Fix last clippy error of 0.0.212
2 parents f40c3d4 + 1b409f4 commit ff6935b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/src/obj/objdict.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ macro_rules! dict_iterator {
550550
#[pyimpl]
551551
impl $name {
552552
fn new(dict: PyDictRef) -> Self {
553-
$name { dict: dict }
553+
$name { dict }
554554
}
555555

556556
#[pymethod(name = "__iter__")]

0 commit comments

Comments
 (0)