Method
__init__
(self, tcp_port: int, serial_port: str | None = None, **kwargs: dict[str, Any])
Source from the content-addressed store, hash-verified
| 365 | class PythonTests(AbstractTests): |
| 366 | |
| 367 | def __init__(self, tcp_port: int, serial_port: str | None = None, **kwargs: dict[str, Any]) -> None: |
| 368 | super().__init__(**kwargs) |
| 369 | |
| 370 | self.tcp_port = tcp_port |
| 371 | self.serial_port = serial_port |
| 372 | |
| 373 | def init_tests(self) -> bool: |
| 374 | return True |
Callers
nothing calls this directly
Tested by
no test coverage detected