From c1740ed4864b976b5b6ead7d83eee0b5de760954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20M=C3=A4rtens?= Date: Tue, 8 Jun 2021 15:45:46 +0200 Subject: [PATCH] add todo for clippy exception --- common/src/bin/csv_import/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/bin/csv_import/main.rs b/common/src/bin/csv_import/main.rs index 5e594e1421..8d9271d6e2 100644 --- a/common/src/bin/csv_import/main.rs +++ b/common/src/bin/csv_import/main.rs @@ -1,5 +1,5 @@ #![deny(clippy::clone_on_ref_ptr)] -#![allow(clippy::expect_fun_call)] +#![allow(clippy::expect_fun_call)] //TODO: evaluate to remove this and use `unwrap_or_else(panic!(...))` instead use hashbrown::HashMap; use ron::ser::{to_string_pretty, PrettyConfig};