mypy: Use Python 3 type syntax in zerver/views/typing.py.

This commit is contained in:
Callum Fraser 2017-12-18 14:07:43 +00:00 committed by showell
parent 0438da5c16
commit b0c5eb5482
1 changed files with 5 additions and 3 deletions

View File

@ -9,8 +9,10 @@ from zerver.lib.response import json_success
from zerver.models import UserProfile
@has_request_variables
def send_notification_backend(request, user_profile, operator=REQ('op'),
notification_to = REQ('to', converter=extract_recipients, default=[])):
# type: (HttpRequest, UserProfile, Text, List[Text]) -> HttpResponse
def send_notification_backend(
request: HttpRequest, user_profile: UserProfile,
operator: Text=REQ('op'),
notification_to: List[Text]=REQ('to', converter=extract_recipients, default=[]),
) -> HttpResponse:
check_send_typing_notification(user_profile, notification_to, operator)
return json_success()