diff --git a/plugins/payment-processing/skills/stripe-integration/SKILL.md b/plugins/payment-processing/skills/stripe-integration/SKILL.md index 9df84d9..7324809 100644 --- a/plugins/payment-processing/skills/stripe-integration/SKILL.md +++ b/plugins/payment-processing/skills/stripe-integration/SKILL.md @@ -429,6 +429,9 @@ def test_payment_flow(): # Create payment intent intent = stripe.PaymentIntent.create( amount=1000, + automatic_payment_methods={ + 'enabled': True + }, currency='usd', customer=customer.id )