video_calls: Annotate a type: ignore with a specific bug URL.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2020-06-22 21:46:44 -07:00 committed by Tim Abbott
parent 57b87269ec
commit a3a39494e3
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ def join_bigbluebutton(request: HttpRequest, meeting_id: str = REQ(validator=che
if payload.find("returncode").text != "SUCCESS": if payload.find("returncode").text != "SUCCESS":
return json_error(_("Big Blue Button server returned an unexpected error.")) 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, "meetingID": meeting_id,
"password": password, "password": password,
"fullName": request.user.full_name "fullName": request.user.full_name