Commit 88f93953 authored by Michal Čihař's avatar Michal Čihař

Wrap long line

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 00df0e3b
...@@ -266,7 +266,8 @@ def user_commit_pending(sender, instance, **kwargs): ...@@ -266,7 +266,8 @@ def user_commit_pending(sender, instance, **kwargs):
@receiver(m2m_changed, sender=Profile.subscriptions.through) @receiver(m2m_changed, sender=Profile.subscriptions.through)
def add_user_subscription(sender, instance, action, reverse, model, pk_set, **kwargs): def add_user_subscription(sender, instance, action, reverse, model, pk_set,
**kwargs):
if action != 'post_add': if action != 'post_add':
return return
targets = model.objects.filter(pk__in=pk_set) targets = model.objects.filter(pk__in=pk_set)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment