fix: remove deprecated argument "providing_args" from Signal() (#138)

From the source:

> The providing_args argument is deprecated. As it is purely
> documentational, it has no replacement. If you rely on this
> argument as documentation, you can move the text to a code
> comment or docstring.
pull/135/head
Xiretza 2 years ago committed by GitHub
parent 5dbb8a4ad8
commit c6b1b855df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,3 +1,4 @@
from django.dispatch import Signal
user_signed_up = Signal(providing_args=["request", "user"])
# Provides arguments "request" and "user"
user_signed_up = Signal()

Loading…
Cancel
Save