From 76b480f6996b49f55246392bced0a1bd3d3d6266 Mon Sep 17 00:00:00 2001 From: Cristhian Garcia Date: Tue, 1 Oct 2024 11:04:32 -0500 Subject: [PATCH] chore: remove unused parameter --- platform_plugin_aspects/signals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform_plugin_aspects/signals.py b/platform_plugin_aspects/signals.py index 6c528f6..3dba75b 100644 --- a/platform_plugin_aspects/signals.py +++ b/platform_plugin_aspects/signals.py @@ -74,7 +74,7 @@ def on_user_profile_updated_txn(*args, **kwargs): queuing the Celery task until after the transaction is committed. """ - def on_user_profile_updated(sender, instance, **kwargs): + def on_user_profile_updated(instance, **kwargs): """ Queues the UserProfile dump job when the parent transaction is committed. """