Django - Signals
Identify the error in this signal handler code that prevents it from working correctly:
from django.db.models.signals import pre_delete
def cleanup(sender, instance):
print(f"Cleaning up {instance}")
pre_delete.connect(cleanup)