We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 632a6de commit ab8a1d8Copy full SHA for ab8a1d8
tests/test_url_query.py
@@ -1,17 +1,16 @@
1
-from typing import List, Tuple # noqa: F401
+from typing import List, Tuple
2
from urllib.parse import urlencode
3
4
import pytest
5
from multidict import MultiDict, MultiDictProxy
6
7
from yarl import URL
8
9
-
10
# ========================================
11
# Basic chars in query values
12
13
14
-URLS_WITH_BASIC_QUERY_VALUES = [
+URLS_WITH_BASIC_QUERY_VALUES: List[Tuple[URL, MultiDict]] = [
15
# Empty strings, keys and values
16
(
17
URL("http://example.com"),
@@ -52,7 +51,7 @@
52
51
URL("http://example.com?bar=𝕦𝕟𝕚𝕔𝕠𝕕𝕖"),
53
MultiDict({"bar": "𝕦𝕟𝕚𝕔𝕠𝕕𝕖"}),
54
),
55
-] # type: List[Tuple[URL, MultiDict]]
+]
56
57
58
@pytest.mark.parametrize(
0 commit comments