Skip to content

Commit

Permalink
fix cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Jayko001 committed Feb 8, 2024
1 parent 47e1b90 commit 75fe1d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ fn resp_to_rows(obj: &str, resp: &JsonValue, tgt_cols: &[Column]) -> Vec<Row> {
("customer.external_customer_id", "organization_id", "string"),
("status", "status", "string"),
("due_date", "due_date", "string"),
("amount_due", "amount", "string")
("amount_due", "amount", "string"),
],
tgt_cols,
);
Expand Down Expand Up @@ -187,7 +187,7 @@ impl OrbFdw {
ret
}
"invoices" => {
let ret = format!{"{}/invoices?limit={}", base_url, Self::PAGE_SIZE};
let ret = format! {"{}/invoices?limit={}", base_url, Self::PAGE_SIZE};
ret
}
_ => {
Expand Down

0 comments on commit 75fe1d6

Please sign in to comment.