(col: List[Column])
| 24 | |
| 25 | |
| 26 | def render_col(col: List[Column]) -> str: |
| 27 | if len(col) == 1: |
| 28 | return f'"{col[0].name}"' |
| 29 | else: |
| 30 | names = (f'"{c.name}"' for c in col) |
| 31 | return f'({", ".join(names)})' |
| 32 | |
| 33 | |
| 34 | def render_options(model: Reference) -> str: |
no outgoing calls