Skip to content

Commit

Permalink
chore: cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
hschimke committed Jan 3, 2024
1 parent bc161bc commit 64ebf1f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/decode_hints.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ pub enum DecodeHintTypes {
*/
AlsoInverted,


/**
* Translate the ASCII values parsed by the Telepen reader into the Telepen Numeric form; use {@link Boolean#TRUE}.
*/
Expand Down Expand Up @@ -248,8 +247,10 @@ impl DecodeHintDictionary {
let Ok(telepen_as_numeric) = value.parse() else {
return false;
};
self.0
.insert(hint.into(), rxing::DecodeHintValue::TelepenAsNumeric(telepen_as_numeric));
self.0.insert(
hint.into(),
rxing::DecodeHintValue::TelepenAsNumeric(telepen_as_numeric),
);
}
}
true
Expand Down

0 comments on commit 64ebf1f

Please sign in to comment.