From af9a57f6f04cfd86b27fa36d4b798e1a56c1265a Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Wed, 18 May 2022 09:03:52 -0400 Subject: [PATCH] should be `None` here instead of `_` --- src/function_entry.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/function_entry.rs b/src/function_entry.rs index 3ec5370..d0b6775 100644 --- a/src/function_entry.rs +++ b/src/function_entry.rs @@ -516,7 +516,7 @@ impl FunctionEntry { // return value rounded to 8 decimal places Some(emath::round_to_decimals(integral_data.1, 8)) } - _ => None, + None => None, } }