Bug 1839345 - Remove TypedDict imports, r=webdriver-reviewers

This isn't in Python 3.7, and isn't being used anyway.

Differential Revision: https://phabricator.services.mozilla.com/D181457
This commit is contained in:
James Graham 2023-06-20 11:29:27 +01:00 коммит произвёл moz-wptsync-bot
Родитель fde6d915df
Коммит 0c7e66f185
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1,6 +1,6 @@
"""Methods for the report-event-attribution and report-aggregate-attribution endpoints"""
import json
from typing import List, Optional, Tuple, TypedDict
from typing import List, Optional, Tuple
import urllib.parse
from wptserve.request import Request

Просмотреть файл

@ -1,6 +1,6 @@
"""Methods for the report-shared-storage and report-protected-audience endpoints (including debug endpoints)"""
import json
from typing import List, Optional, Tuple, TypedDict
from typing import List, Optional, Tuple
import urllib.parse
from wptserve.request import Request