6 lines
159 B
Python
6 lines
159 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.dispatch import Signal
|
|
|
|
post_document_version_ocr = Signal(providing_args=['instance'], use_caching=True)
|