1
0
mirror of https://github.com/etesync/server synced 2024-11-14 04:49:18 +00:00

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.
This commit is contained in:
Xiretza 2022-05-09 16:19:57 +02:00 committed by GitHub
parent 5dbb8a4ad8
commit c6b1b855df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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()