From ae52adb4ee83ac4dd421d28bc1d1a11c6d2c7870 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Mon, 29 Jan 2024 11:29:20 -0800 Subject: [PATCH] lint: Fix errors caused by rebasing past black upgrade. --- corporate/lib/stripe.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/corporate/lib/stripe.py b/corporate/lib/stripe.py index dd62f98e6e..68b0752756 100644 --- a/corporate/lib/stripe.py +++ b/corporate/lib/stripe.py @@ -1229,9 +1229,9 @@ class BillingSession(ABC): ) fixed_price_plan_params["billing_cycle_anchor"] = current_plan.end_date fixed_price_plan_params["next_invoice_date"] = current_plan.end_date - fixed_price_plan_params[ - "invoicing_status" - ] = CustomerPlan.INVOICING_STATUS_INITIAL_INVOICE_TO_BE_SENT + fixed_price_plan_params["invoicing_status"] = ( + CustomerPlan.INVOICING_STATUS_INITIAL_INVOICE_TO_BE_SENT + ) fixed_price_plan_params["billing_schedule"] = current_plan.billing_schedule fixed_price_plan_params["charge_automatically"] = current_plan.charge_automatically # Manual license management is not available for fixed price plan.