fix(format): apply black formatting

This commit is contained in:
Christopher Charbonneau Wells 2024-11-10 17:00:35 +00:00
parent 58885814b1
commit 35b431cc97

View file

@ -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)