mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
fix(format): apply black formatting
This commit is contained in:
parent
58885814b1
commit
35b431cc97
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue