(types: Sequence[Type])
| 2664 | return format_type_inner(typ, verbosity, options, fullnames) |
| 2665 | |
| 2666 | def format_list(types: Sequence[Type]) -> str: |
| 2667 | return ", ".join(format(typ) for typ in types) |
| 2668 | |
| 2669 | def format_union_items(types: Sequence[Type]) -> list[str]: |
| 2670 | formatted = [format(typ) for typ in types if format(typ) != "None"] |
no test coverage detected
searching dependent graphs…