From 413582bb0f63c423924cafb2160dfcd719ab713c Mon Sep 17 00:00:00 2001
From: Dominik George <nik@naturalnet.de>
Date: Wed, 22 Jan 2020 23:42:28 +0100
Subject: [PATCH] Add missing return type hint

---
 aleksis/core/util/notifications.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/aleksis/core/util/notifications.py b/aleksis/core/util/notifications.py
index eb99adf68..5f6f8fded 100644
--- a/aleksis/core/util/notifications.py
+++ b/aleksis/core/util/notifications.py
@@ -20,7 +20,7 @@ from .core_helpers import celery_optional, lazy_config
 
 def send_templated_sms(
     template_name: str, from_number: str, recipient_list: Sequence[str], context: dict
-):
+) -> None:
     """ Render a plan-text template and send via SMS to all recipients. """
 
     template = get_template(template_name)
-- 
GitLab