Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
tirix committed Nov 12, 2023
1 parent 80d7f04 commit bf8f09b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/statement.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,12 +139,10 @@ impl ExpressionRenderer {
&self,
formula: &Formula,
database: &Database,
use_provables: bool,
#[allow(unused_variables)] use_provables: bool,
) -> Result<String, String> {
match self {
ExpressionRenderer::Ascii => {
Ok(format!("<pre>{}</pre>", formula.as_ref(database)))
}
ExpressionRenderer::Ascii => Ok(format!("<pre>{}</pre>", formula.as_ref(database))),
ExpressionRenderer::Unicode(uni) => uni.render_formula(formula),
#[cfg(feature = "sts")]
ExpressionRenderer::Sts(sts) => sts.render_formula(formula, use_provables),
Expand Down

0 comments on commit bf8f09b

Please sign in to comment.