I have the following line in my header:
import config.logging_settings
This actually changes my python logging settings, but pylint thinks
import config.logging_settings # pylint: disable=W0611
That was simple and is specific for that line.
As sthenault kindly pointed out, you can and should use the more readable form:
import config.logging_settings # pylint: disable=unused-import