Update pylint to 3.0.0 (#101282)

This commit is contained in:
Marc Mueller
2023-10-02 20:12:43 +02:00
committed by GitHub
parent e4cb19f20d
commit f248b693d7
6 changed files with 8 additions and 8 deletions

View File

@@ -21,7 +21,7 @@ def _get_module_platform(module_name: str) -> str | None:
return platform.lstrip(".") if platform else "__init__"
class HassInheritanceChecker(BaseChecker): # type: ignore[misc]
class HassInheritanceChecker(BaseChecker):
"""Checker for invalid inheritance."""
name = "hass_inheritance"