Django - Signals
Identify the error in this signal connection code:
from django.db.models.signals import pre_save
def handler(sender, instance, **kwargs):
print("Saving instance")
pre_save.connect(handler)