Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
c-bata committed Jan 14, 2025
1 parent dfcce8b commit 46d1f54
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions python_tests/wsgi_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@


if typing.TYPE_CHECKING:
from sys import _OptExcInfo

from _typeshed import OptExcInfo
from _typeshed.wsgi import WSGIEnvironment


Expand Down Expand Up @@ -67,7 +66,7 @@ def send_request(
response_headers: list[tuple[str, str]] = []

def start_response(
status_: str, headers_: list[tuple[str, str]], exc_info: _OptExcInfo | None = None
status_: str, headers_: list[tuple[str, str]], exc_info: OptExcInfo | None = None
) -> None:
nonlocal status, response_headers
status = status_
Expand Down

0 comments on commit 46d1f54

Please sign in to comment.