(self, *args, **kwargs)
| 1424 | raise Scapy_Exception("Not running ! (check .running attr)") |
| 1425 | |
| 1426 | def join(self, *args, **kwargs): |
| 1427 | # type: (*Any, **Any) -> None |
| 1428 | if self.thread: |
| 1429 | self.thread.join(*args, **kwargs) |
| 1430 | if self.exception is not None: |
| 1431 | raise self.exception |
| 1432 | |
| 1433 | |
| 1434 | @conf.commands.register |
no outgoing calls
no test coverage detected