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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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"