1
0
mirror of https://github.com/etesync/server synced 2024-11-22 16:58:08 +00:00
etesync-server/django_etebase/signals.py
Xiretza c6b1b855df
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.
2022-05-09 17:19:57 +03:00

5 lines
104 B
Python

from django.dispatch import Signal
# Provides arguments "request" and "user"
user_signed_up = Signal()