(typ: Type)
| 2661 | """ |
| 2662 | |
| 2663 | def format(typ: Type) -> str: |
| 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) |
no test coverage detected
searching dependent graphs…