Open
Description
def func(
self, foo,
) -> typing.Tuple[
typing.Union[StreamingResponse],
It is fine as:
def func(
self, foo,
) -> typing.Tuple[
typing.Union[StreamingResponse],
]:
pass
But should get an extra indent with:
def func(
self, foo,
) -> typing.Tuple[
typing.Union[StreamingResponse]]:
pass
Just like
def func(
self, foo):
pass
is turned into:
def func(
self, foo):
pass
Metadata
Metadata
Assignees
Labels
No labels