aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin Matte <devinmatte@gmail.com>2022-03-21 13:38:57 -0400
committerDevin Matte <devinmatte@gmail.com>2022-03-21 13:38:57 -0400
commitbd99c8ad255d5bd6ca861d4fda4b9a414ca0fc8f (patch)
tree4d4e020363bf699d4a0831a1e785d4148a7abe81
parent1b06260fd28e463b97c78dbd0e1f24c2d32eceb8 (diff)
Fix linting
-rw-r--r--packet/notifications.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/packet/notifications.py b/packet/notifications.py
index c665125..5ec511a 100644
--- a/packet/notifications.py
+++ b/packet/notifications.py
@@ -48,7 +48,7 @@ def packet_signed_notification(packet: Packet, signer: str) -> None:
subscriptions = NotificationSubscription.query.filter_by(freshman_username=packet.freshman_username)
if subscriptions:
notification_body = post_body
- notification_body['contents']['en'] = signer + " signed your packet!"
+ notification_body['contents']['en'] = signer + ' signed your packet!'
notification_body['headings']['en'] = 'New Packet Signature!'
notification_body['chrome_web_icon'] = 'https://profiles.csh.rit.edu/image/' + signer
notification_body['url'] = app.config['PROTOCOL'] + app.config['PACKET_INTRO']