(self, timeout=10)
| 48 | ''' |
| 49 | |
| 50 | def __init__(self, timeout=10): |
| 51 | self.timeout = timeout |
| 52 | self.protocol = [] |
| 53 | self._get_protocol() |
| 54 | |
| 55 | def _get_protocol(self): |
| 56 | if not self.protocol: |
nothing calls this directly
no test coverage detected