Shutdown function, following the ``can_BusABC`` interface of python-can.
(self)
| 249 | SocketsPool.internal_send(self, msg) |
| 250 | |
| 251 | def shutdown(self): |
| 252 | # type: () -> None |
| 253 | """Shutdown function, following the ``can_BusABC`` interface of |
| 254 | python-can. |
| 255 | """ |
| 256 | SocketsPool.unregister(self) |
| 257 | super().shutdown() |
| 258 | |
| 259 | |
| 260 | class PythonCANSocket(SuperSocket): |
no test coverage detected