Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrius Bentkus authored and rtyler committed Apr 12, 2024
1 parent 6dc46c3 commit 416dda2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ async fn main() -> anyhow::Result<()> {
let transforms: HashMap<String, String> = ingest_matches
.get_many::<String>("transform")
.map(|list| list.map(|t| parse_transform(t).unwrap()).collect())
.unwrap_or_else(|| HashMap::new());
.unwrap_or_else(HashMap::new);

let dlq_table_location = ingest_matches
.get_one::<String>("dlq_table_location")
Expand Down

0 comments on commit 416dda2

Please sign in to comment.