From f0e1767bc96e9924cf66c80d8909b3ab4ed8facf Mon Sep 17 00:00:00 2001 From: Hugh Rundle Date: Sun, 22 Jan 2023 16:10:30 +1100 Subject: [PATCH] black code --- bookwyrm/activitypub/base_activity.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bookwyrm/activitypub/base_activity.py b/bookwyrm/activitypub/base_activity.py index 3adddfeb9..02e5395fc 100644 --- a/bookwyrm/activitypub/base_activity.py +++ b/bookwyrm/activitypub/base_activity.py @@ -317,7 +317,10 @@ def get_representative(): user = models.User.objects.get(username=username) except models.User.DoesNotExist: user = models.User.objects.create_user( - username=username, email=email, local=True, localname=INSTANCE_ACTOR_USERNAME + username=username, + email=email, + local=True, + localname=INSTANCE_ACTOR_USERNAME, ) return user