Skip to content

Commit

Permalink
chore: cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
zkat committed Mar 19, 2023
1 parent a39cfef commit 49ed83b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,10 @@ impl Orogene {
.set_default("loglevel", "warn")?
.set_default(
"no_emoji",
&format!("{}", !supports_unicode::on(supports_unicode::Stream::Stderr)),
&format!(
"{}",
!supports_unicode::on(supports_unicode::Stream::Stderr)
),
)?
.set_default("root", &root.to_string_lossy())?;
if let Some(cache) = dirs.as_ref().map(|d| d.cache_dir().to_owned()) {
Expand Down

0 comments on commit 49ed83b

Please sign in to comment.