Skip to content

Commit 6222627

Browse files
committed
chore: clippy fixes on inline string formatting
1 parent 3c39be0 commit 6222627

File tree

1 file changed

+1
-1
lines changed
  • lambda-events/src/event/dynamodb

1 file changed

+1
-1
lines changed

lambda-events/src/event/dynamodb/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ impl fmt::Display for StreamViewType {
2727
StreamViewType::NewAndOldImages => "NEW_AND_OLD_IMAGES",
2828
StreamViewType::KeysOnly => "KEYS_ONLY",
2929
};
30-
write!(f, "{}", val)
30+
write!(f, "{val}")
3131
}
3232
}
3333

0 commit comments

Comments
 (0)