(types: Sequence[Type])
| 2680 | return formatted |
| 2681 | |
| 2682 | def format_union(types: Sequence[Type]) -> str: |
| 2683 | return " | ".join(format_union_items(types)) |
| 2684 | |
| 2685 | def format_literal_value(typ: LiteralType) -> str: |
| 2686 | if typ.is_enum_literal(): |
no test coverage detected
searching dependent graphs…