Skip to content

Commit

Permalink
fix(cli): set disable_formatting to default false
Browse files Browse the repository at this point in the history
  • Loading branch information
hougesen authored Oct 29, 2023
1 parent 0e86387 commit f454320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hitt-cli/src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ pub(crate) struct CliArguments {
pub(crate) hide_headers: bool,

/// Disable pretty printing of response body
#[arg(long, default_value_t = true)]
#[arg(long, default_value_t = false)]
pub(crate) disable_formatting: bool,
}

0 comments on commit f454320

Please sign in to comment.