Fix Type Hint (#2322)
* Fix Type Hint Union is not necessary here? My IDE pops an error for it. * Rerun workflows * empty commit
This commit is contained in:
parent
55c36e0240
commit
a8d55e180c
|
@ -101,7 +101,7 @@ class BaseHTTPResponse:
|
||||||
|
|
||||||
async def send(
|
async def send(
|
||||||
self,
|
self,
|
||||||
data: Optional[Union[AnyStr]] = None,
|
data: Optional[AnyStr] = None,
|
||||||
end_stream: Optional[bool] = None,
|
end_stream: Optional[bool] = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user