Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
CoolCat467 committed Nov 18, 2024
1 parent e99a9d9 commit 940de63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/flask/typing.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from __future__ import annotations

import collections.abc as cabc
import typing as t

if t.TYPE_CHECKING: # pragma: no cover
from collections.abc import AsyncIterable
from _typeshed.wsgi import WSGIApplication # noqa: F401
from werkzeug.datastructures import Headers # noqa: F401
from werkzeug.sansio.response import Response # noqa: F401
Expand All @@ -18,8 +18,8 @@
t.Mapping[str, t.Any],
t.Iterator[str],
t.Iterator[bytes],
AsyncIterable[str],
AsyncIterable[bytes],
cabc.AsyncIterable[str],
cabc.AsyncIterable[bytes],
]

# the possible types for an individual HTTP header
Expand Down

0 comments on commit 940de63

Please sign in to comment.