Skip to content

Commit

Permalink
formatted code
Browse files Browse the repository at this point in the history
  • Loading branch information
harshdoesdev committed Oct 31, 2023
1 parent 45278e6 commit 6d710d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastn-core/src/library2022/processor/sqlite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ fn extract_named_parameters(
}

// Handle the last param if there was no trailing comma or space
if state.eq(&State::PushParam) && !param_name.is_empty() {
if state.eq(&State::PushParam) && !param_name.is_empty() {
let param_value = resolve_param(&param_name, &param_type, doc, &headers, line_number)?;
params.push(Box::new(param_value) as Box<dyn rusqlite::ToSql>);
}
Expand Down

0 comments on commit 6d710d0

Please sign in to comment.