1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

Remove unnnecessary pylint configs from core (#98704)

This commit is contained in:
Ville Skyttä
2023-08-23 00:12:12 +03:00
committed by GitHub
parent e9af99e469
commit 6399d74c15
27 changed files with 27 additions and 63 deletions

View File

@@ -237,7 +237,6 @@ class Store(Generic[_T]):
self.minor_version,
)
if len(inspect.signature(self._async_migrate_func).parameters) == 2:
# pylint: disable-next=no-value-for-parameter
stored = await self._async_migrate_func(data["version"], data["data"])
else:
try: