Remove pylint unused-import (#871)

This commit is contained in:
Marc Mueller 2021-03-30 08:32:38 +02:00 committed by GitHub
parent b1a3b5dc17
commit f89e7153e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -301,7 +301,7 @@ Example configuration flow that includes two show progress tasks.
```python
from homeassistant import config_entries
from .const import DOMAIN # pylint:disable=unused-import
from .const import DOMAIN
class TestFlow(config_entries.ConfigFlow, domain=DOMAIN):