From a3a39494e339713caa39195957a1ff7fe8e7c9a0 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Mon, 22 Jun 2020 21:46:44 -0700 Subject: [PATCH] video_calls: Annotate a type: ignore with a specific bug URL. Signed-off-by: Anders Kaseorg --- zerver/views/video_calls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zerver/views/video_calls.py b/zerver/views/video_calls.py index 1995e4394f..5e7e98c9b2 100644 --- a/zerver/views/video_calls.py +++ b/zerver/views/video_calls.py @@ -208,7 +208,7 @@ def join_bigbluebutton(request: HttpRequest, meeting_id: str = REQ(validator=che if payload.find("returncode").text != "SUCCESS": return json_error(_("Big Blue Button server returned an unexpected error.")) - join_params = urlencode({ # type: ignore[type-var] # MyPy has an AnyStr / Union[bytes, str] mismatch here. + join_params = urlencode({ # type: ignore[type-var] # https://github.com/python/typeshed/issues/4234 "meetingID": meeting_id, "password": password, "fullName": request.user.full_name