1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00
* The purely documentational providing_args argument for Signal is deprecated. If you rely on this argument as documentation, you can move the text to a code comment or docstring.
This commit is contained in:
Fleur Dragan 2022-08-16 15:55:38 -05:00
parent faebda7b34
commit 44170a34fb

View file

@ -1,3 +1,4 @@
from django.dispatch.dispatcher import Signal
message_received = Signal(providing_args=['message'])
# providing_args=['message']
message_received = Signal()