Skip to content

Commit 1d5e74c

Browse files
Format backend
1 parent 6ca3d07 commit 1d5e74c

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

app/backend/src/couchers/email/emails.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ def get_body_blocks(self, loc_context: LocalizationContext) -> list[EmailBlock]:
703703
if self.community_name:
704704
builder.para(".purpose_with_community", {"user": self.inviting_user.name, "community": self.community_name})
705705
else:
706-
builder.para(".purpose_no_community", {"user": self.inviting_user.name })
706+
builder.para(".purpose_no_community", {"user": self.inviting_user.name})
707707
builder.block(self.event_info.get_details_block(loc_context))
708708
builder.user(self.inviting_user)
709709
builder.block(self.event_info.get_description_block())
@@ -1568,7 +1568,9 @@ def get_subject_line(self, loc_context: LocalizationContext) -> str:
15681568

15691569
def get_body_blocks(self, loc_context: LocalizationContext) -> list[EmailBlock]:
15701570
builder = self._body_builder(loc_context)
1571-
builder.para(f".{self.string_role_subkey}.purpose_days", {"name": self.other_user.name, "count": self.days_left})
1571+
builder.para(
1572+
f".{self.string_role_subkey}.purpose_days", {"name": self.other_user.name, "count": self.days_left}
1573+
)
15721574
builder.user(self.other_user)
15731575
builder.action(
15741576
self.leave_reference_url,

0 commit comments

Comments
 (0)