Cryptic Tox fail

Hi!

I made PR#10563.

Tox with TOXENV=lint fails.

Error is:

************* Module homeassistant.components.switch.modbus
W:130, 4: __init__ method from base class 'ModbusCoilSwitch' is not called (super-init-not-called)
ERROR: InvocationError: '/home/travis/build/home-assistant/home-assistant/.tox/lint/bin/pylint homeassistant'
lint runtests: commands[2] | pydocstyle homeassistant tests
___________________________________ summary ____________________________________
ERROR:   lint: commands failed
/home/travis/.travis/job_stages: line 169:  4178 Terminated              travis_jigger $! $timeout $cmd

I can’t understand what’s wrong.
There is a warning “super-init-not-called” but my code don’t need to call super init from base class.

You can locally disable specific checks like this:

# pylint: disable=super-init-not-called

Place such a line directly above the line that is causing trouble.

Solved! Thanks!