From 175a67d79f027e51af5620974c2b8eb2ca660d78 Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Wed, 28 May 2025 08:08:27 +0000 Subject: [PATCH] Update --- pylint/plugins/hass_async_load_fixtures.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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):