From 52c9f1be300bc4b63fc7d59d61c127c7f5d63969 Mon Sep 17 00:00:00 2001 From: Andrius Bentkus Date: Tue, 26 Mar 2024 19:55:15 +0200 Subject: [PATCH] lint --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 75ff41a..ae2c89f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -117,7 +117,7 @@ async fn main() -> anyhow::Result<()> { let transforms: HashMap = ingest_matches .get_many::("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::("dlq_table_location")