Append a line to the pre-import prefix of the script. Args: line (str): The line to append.
(self, line)
| 358 | self.runners.append(runner_str) |
| 359 | |
| 360 | def append_preimport(self, line): |
| 361 | """ |
| 362 | Append a line to the pre-import prefix of the script. |
| 363 | |
| 364 | Args: |
| 365 | line (str): The line to append. |
| 366 | """ |
| 367 | line = ensure_safe(line).unwrap() |
| 368 | self.preimport.append(line) |
| 369 | |
| 370 | def append_suffix(self, line): |
| 371 | """ |
no test coverage detected