File: signals.py

package info (click to toggle)
django-notification 1.2.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 296 kB
  • sloc: python: 873; makefile: 113
file content (7 lines) | stat: -rw-r--r-- 163 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
import django.dispatch


# pylint: disable-msg=C0103
emitted_notices = django.dispatch.Signal(
    providing_args=["batches", "sent", "sent_actual", "run_time"]
)