Skip to content

Commit

Permalink
remove providing args argument
Browse files Browse the repository at this point in the history
  • Loading branch information
adlindenberg committed Jul 1, 2024
1 parent 59e0dbf commit f5a39f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions djstripe/signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
"""
from django.dispatch import Signal

webhook_processing_error = Signal(providing_args=["data", "exception"])
webhook_processing_error = Signal()

# A signal for each Event type. See https://stripe.com/docs/api/events/types

WEBHOOK_SIGNALS = dict(
[
(hook, Signal(providing_args=["event"]))
(hook, Signal())
for hook in [
# Update this by copy-pasting the "enabled_events" enum values from
# https://raw.githubusercontent.com/stripe/openapi/master/openapi/spec3.json
Expand Down

0 comments on commit f5a39f9

Please sign in to comment.