Update pylint to 2.7.3 (#48488)

* Update pylint to 2.7.3

* Add class-const-naming-style

* Remove unused-import message

* Additional cleanup
This commit is contained in:
Marc Mueller 2021-03-30 06:02:56 +02:00 committed by GitHub
parent 9a75019a65
commit 2956eb0902
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
170 changed files with 163 additions and 288 deletions

View file

@ -7,7 +7,7 @@ from homeassistant import config_entries
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
from homeassistant.helpers import aiohttp_client
from .const import DOMAIN # pylint: disable=unused-import
from .const import DOMAIN
class NotionFlowHandler(config_entries.ConfigFlow, domain=DOMAIN):