From e8fd97e3554de0f154ecf4118d877745cc9a64b7 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Mon, 30 Sep 2024 12:42:04 +0200 Subject: [PATCH] Fix stale docstring in loader.USBMatcher (#127094) --- homeassistant/loader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/loader.py b/homeassistant/loader.py index f248a942be9..ae42bfb369b 100644 --- a/homeassistant/loader.py +++ b/homeassistant/loader.py @@ -206,7 +206,7 @@ class USBMatcherOptional(TypedDict, total=False): class USBMatcher(USBMatcherRequired, USBMatcherOptional): - """Matcher for the bluetooth integration.""" + """Matcher for the USB integration.""" @dataclass(slots=True)