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.master
parent
5dbb8a4ad8
commit
c6b1b855df
@ -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…
Reference in New Issue