Skip to content

Commit

Permalink
tests: Add type hints to make mypy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
besfahbod committed Aug 13, 2018
1 parent 403f5c6 commit c9a59a2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_url_query.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from typing import List, Tuple # noqa: F401
from urllib.parse import urlencode

import pytest
from multidict import MultiDict
from urllib.parse import urlencode

from yarl import URL

Expand Down Expand Up @@ -55,7 +57,7 @@
URL('http://example.com?bar=π•¦π•Ÿπ•šπ•”π• π••π•–'),
MultiDict({'bar': 'π•¦π•Ÿπ•šπ•”π• π••π•–'}),
),
]
] # type: List[Tuple[URL, MultiDict]]


@pytest.mark.parametrize(
Expand Down

0 comments on commit c9a59a2

Please sign in to comment.