diff --git a/pylint/plugins/hass_async_load_fixtures.py b/pylint/plugins/hass_async_load_fixtures.py index 97501623bef..1702ff75a05 100644 --- a/pylint/plugins/hass_async_load_fixtures.py +++ b/pylint/plugins/hass_async_load_fixtures.py @@ -6,7 +6,11 @@ from astroid import nodes from pylint.checkers import BaseChecker from pylint.lint import PyLinter -FUNCTION_NAMES = ("load_fixture",) +FUNCTION_NAMES = ( + "load_fixture", + "load_json_array_fixture", + "load_json_object_fixture", +) class HassLoadFixturesChecker(BaseChecker):