Skip to content

Commit

Permalink
ran rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTollingBell committed Aug 13, 2024
1 parent 18b28e6 commit fd8f3d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions color-eyre/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1186,7 +1186,7 @@ pub enum Verbosity {

pub(crate) fn panic_verbosity(verbosity: Option<Verbosity>) -> Verbosity {
if let Some(v) = verbosity {
return v
return v;
}

match env::var("RUST_BACKTRACE") {
Expand All @@ -1198,7 +1198,7 @@ pub(crate) fn panic_verbosity(verbosity: Option<Verbosity>) -> Verbosity {

pub(crate) fn lib_verbosity(verbosity: Option<Verbosity>) -> Verbosity {
if let Some(v) = verbosity {
return v
return v;
}

match env::var("RUST_LIB_BACKTRACE").or_else(|_| env::var("RUST_BACKTRACE")) {
Expand Down

0 comments on commit fd8f3d2

Please sign in to comment.