From 1bd69db1d0be9194c97dcd64bba981cac2dbf8b0 Mon Sep 17 00:00:00 2001 From: Steve Androulakis Date: Mon, 29 Sep 2025 14:30:42 -0700 Subject: [PATCH] stripe usd invoices --- tools/create_invoice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/create_invoice.py b/tools/create_invoice.py index 1df3454..ea31f93 100644 --- a/tools/create_invoice.py +++ b/tools/create_invoice.py @@ -47,7 +47,7 @@ def create_invoice(args: dict) -> dict: stripe.InvoiceItem.create( customer=customer_id, amount=amount_cents, - currency="gbp", + currency="usd", description=args.get("tripDetails", "Service Invoice"), )