(text: str)
| 14 | |
| 15 | |
| 16 | def quote_string(text: str) -> str: |
| 17 | if '\n' in text: |
| 18 | return f"'''\n{prepare_text_for_dbml(text)}'''" |
| 19 | else: |
| 20 | return f"'{prepare_text_for_dbml(text)}'" |
| 21 | |
| 22 | |
| 23 | def note_option_to_dbml(note: 'Note') -> str: |
no test coverage detected