mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 21:06:19 +00:00
Lint config cleanups (#28864)
* Remove bunch of unneeded lint exclusions * Use symbolic names instead of identifiers in pylint disables * Tighten scope of some pylint disables
This commit is contained in:
committed by
Paulus Schoutsen
parent
afaa464142
commit
99c7608fb4
@@ -24,7 +24,7 @@ class DiscoveryFlowHandler(config_entries.ConfigFlow):
|
||||
self._domain = domain
|
||||
self._title = title
|
||||
self._discovery_function = discovery_function
|
||||
self.CONNECTION_CLASS = connection_class # pylint: disable=C0103
|
||||
self.CONNECTION_CLASS = connection_class # pylint: disable=invalid-name
|
||||
|
||||
async def async_step_user(self, user_input=None):
|
||||
"""Handle a flow initialized by the user."""
|
||||
|
||||
Reference in New Issue
Block a user