From d9b3ee35a059fe830329a45e62c36da763dc02d2 Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Tue, 11 Jun 2024 15:01:14 +0200 Subject: [PATCH] Fix typo in pylint plugin (#119362) --- pylint/plugins/hass_enforce_type_hints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylint/plugins/hass_enforce_type_hints.py b/pylint/plugins/hass_enforce_type_hints.py index 72cbf2ee04a..feda93fc7fa 100644 --- a/pylint/plugins/hass_enforce_type_hints.py +++ b/pylint/plugins/hass_enforce_type_hints.py @@ -3118,7 +3118,7 @@ class HassTypeHintChecker(BaseChecker): "Used when method return type is incorrect", ), "W7433": ( - "Argument %s is of type %s and could be move to " + "Argument %s is of type %s and could be moved to " "`@pytest.mark.usefixtures` decorator in %s", "hass-consider-usefixtures-decorator", "Used when an argument type is None and could be a fixture",