(self, timeout=None)
| 47 | return |
| 48 | |
| 49 | def stop(self, timeout=None): |
| 50 | if __debug__: |
| 51 | print(f"Stop called on {self.script}") |
| 52 | self._stopevent.set() |
| 53 | # threading.Thread.join(self, timeout) |
| 54 | |
| 55 | def parse_row(self, row): |
| 56 | print(f"Row: {row}") |
no outgoing calls
no test coverage detected