Returns the string representation of @line. WARNING: This is known to be computationally expensive.
(line: Line)
| 1541 | |
| 1542 | |
| 1543 | def line_to_string(line: Line) -> str: |
| 1544 | """Returns the string representation of @line. |
| 1545 | |
| 1546 | WARNING: This is known to be computationally expensive. |
| 1547 | """ |
| 1548 | return str(line).strip("\n") |
no outgoing calls
no test coverage detected