Skip to content

Commit

Permalink
Small improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Scirlat Danut committed Mar 3, 2024
1 parent 72a7c0a commit c3bfe08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from typing import Protocol

from httpx import Cookies, Headers
import httpx

from starlette.testclient import TestClient
from starlette.types import ASGIApp
Expand All @@ -17,8 +17,8 @@ def __call__(
base_url: str = "http://testserver",
raise_server_exceptions: bool = True,
root_path: str = "",
cookies: Cookies | dict[str, str] | None = None,
headers: Headers | None = None,
cookies: httpx._types.CookieTypes | None = None,
headers: dict[str, str] | None = None,
follow_redirects: bool = True,
) -> TestClient:
...

0 comments on commit c3bfe08

Please sign in to comment.