From 35b431cc970d48fe6c0d187955fbbcbe0ad912a6 Mon Sep 17 00:00:00 2001 From: Christopher Charbonneau Wells <10456740+cdubz@users.noreply.github.com> Date: Sun, 10 Nov 2024 17:00:35 +0000 Subject: [PATCH] fix(format): apply black formatting --- auditlog/registry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auditlog/registry.py b/auditlog/registry.py index 40d7bd1..aa8b689 100644 --- a/auditlog/registry.py +++ b/auditlog/registry.py @@ -225,7 +225,7 @@ class AuditlogModelRegistry: def _dispatch_uid(self, signal, receiver) -> DispatchUID: """Generate a dispatch_uid which is unique for a combination of self, signal, and receiver.""" return id(self), id(signal), id(receiver) - + def _m2m_dispatch_uid(self, signal, sender) -> DispatchUID: """Generate a dispatch_uid which is unique for a combination of self, signal, and sender.""" return id(self), id(signal), id(sender)