Skip to content

Commit

Permalink
ser: sequences: Fix clippy complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
ijackson committed Oct 4, 2023
1 parent 0ef8a89 commit 6bc82ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ impl<'a> ser::Serializer for &'a mut ConfigSerializer {
}

fn serialize_seq(self, _len: Option<usize>) -> Result<Self::SerializeSeq> {
Ok(SeqSerializer::new(self)?)
SeqSerializer::new(self)
}

fn serialize_tuple(self, len: usize) -> Result<Self::SerializeTuple> {
Expand Down

0 comments on commit 6bc82ee

Please sign in to comment.