Skip to content

Commit

Permalink
Black format code
Browse files Browse the repository at this point in the history
  • Loading branch information
HungNgien committed Dec 16, 2024
1 parent dcf9e08 commit 47e7127
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pretalx/submission/models/submission.py
Original file line number Diff line number Diff line change
Expand Up @@ -1047,8 +1047,8 @@ class Meta:
def save(self, user_id, talk_code):
with scopes_disabled():
user = get_object_or_404(User, id=user_id)
submission_fav, _ = (
SubmissionFavouriteDeprecated.objects.get_or_create(user=user)
submission_fav, _ = SubmissionFavouriteDeprecated.objects.get_or_create(
user=user
)
submission_fav.talk_list = talk_code
submission_fav.save()
Expand Down

0 comments on commit 47e7127

Please sign in to comment.