Call the superclass initializer in SerialTransport.

SerialTransport ultimately inherits from asyncio.transports.BaseTransport. The existing code did not call the superclass initializer, so subsequent calls to inherited methods such as SerialTransport.get_extra_info() would fail.
1 file changed