Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 9, 2023
1 parent d076f4b commit 81f07bd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion funnel/transports/email/send.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,15 @@ def jsonld_view_action(description: str, url: str, title: str) -> dict[str, obje
}


def jsonld_register_action(description: str, url: str, title: str, start_date: str, location: str, venue: dict, fullname:str) -> dict[str, object]:
def jsonld_register_action(
description: str,
url: str,
title: str,
start_date: str,
location: str,
venue: dict,
fullname: str,
) -> dict[str, object]:
location = {
"@type": "Place",
"name": location,
Expand Down
2 changes: 1 addition & 1 deletion funnel/views/notifications/rsvp_notification.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def email_content(self):
self.rsvp.project.start_at,
self.rsvp.project.location,
self.rsvp.project.primary_venue,
self.rsvp.participant.fullname
self.rsvp.participant.fullname,
),
)

Expand Down

0 comments on commit 81f07bd

Please sign in to comment.