From fd8f3d22eee5a660951761d75b8d58c66f597d79 Mon Sep 17 00:00:00 2001 From: TheTollingBell Date: Tue, 13 Aug 2024 18:25:12 -0400 Subject: [PATCH] ran rustfmt --- color-eyre/src/config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/color-eyre/src/config.rs b/color-eyre/src/config.rs index d99f314..a913ead 100644 --- a/color-eyre/src/config.rs +++ b/color-eyre/src/config.rs @@ -1186,7 +1186,7 @@ pub enum Verbosity { pub(crate) fn panic_verbosity(verbosity: Option) -> Verbosity { if let Some(v) = verbosity { - return v + return v; } match env::var("RUST_BACKTRACE") { @@ -1198,7 +1198,7 @@ pub(crate) fn panic_verbosity(verbosity: Option) -> Verbosity { pub(crate) fn lib_verbosity(verbosity: Option) -> Verbosity { if let Some(v) = verbosity { - return v + return v; } match env::var("RUST_LIB_BACKTRACE").or_else(|_| env::var("RUST_BACKTRACE")) {