mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 14:03:30 +00:00
email mirror: Fix mypy annotation error.
This commit is contained in:
@@ -3,6 +3,7 @@ from __future__ import absolute_import
|
||||
import ujson
|
||||
|
||||
from django.http import HttpRequest, HttpResponse
|
||||
from typing import Dict
|
||||
|
||||
from zerver.decorator import internal_notify_view
|
||||
from zerver.lib.email_mirror import mirror_email_message
|
||||
@@ -17,7 +18,7 @@ def email_mirror_message(request, data=REQ(validator=check_dict([
|
||||
('recipient', check_string),
|
||||
('msg_text', check_string),
|
||||
]))):
|
||||
# type: (HttpRequest) -> HttpResponse
|
||||
# type: (HttpRequest, Dict[str, str]) -> HttpResponse
|
||||
result = mirror_email_message(ujson.loads(request.POST['data']))
|
||||
if result["status"] == "error":
|
||||
return json_error(result['msg'])
|
||||
|
||||
Reference in New Issue
Block a user