From 13c1081312a9d05c658324972e86bcf520d5e6fa Mon Sep 17 00:00:00 2001 From: Sawyer Hollenshead Date: Fri, 20 Feb 2026 09:40:36 -0800 Subject: [PATCH] Remove PMTs param --- plugins/payment-processing/skills/stripe-integration/SKILL.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/payment-processing/skills/stripe-integration/SKILL.md b/plugins/payment-processing/skills/stripe-integration/SKILL.md index 73a775b..9df84d9 100644 --- a/plugins/payment-processing/skills/stripe-integration/SKILL.md +++ b/plugins/payment-processing/skills/stripe-integration/SKILL.md @@ -79,7 +79,6 @@ stripe.api_key = "sk_test_..." # Create a checkout session session = stripe.checkout.Session.create( - payment_method_types=['card'], line_items=[{ 'price_data': { 'currency': 'usd', @@ -431,8 +430,7 @@ def test_payment_flow(): intent = stripe.PaymentIntent.create( amount=1000, currency='usd', - customer=customer.id, - payment_method_types=['card'] + customer=customer.id ) # Confirm with test card