Wraps the text in quotes.
(text: str)
| 31 | |
| 32 | |
| 33 | def wrap_quotes(text: str) -> str: |
| 34 | """ |
| 35 | Wraps the text in quotes. |
| 36 | """ |
| 37 | return f'"{text}"' |
| 38 | |
| 39 | |
| 40 | class ASTPrinter(ExprFunctor): |
no outgoing calls
no test coverage detected
searching dependent graphs…