diff --git a/homeassistant/components/zha/config_flow.py b/homeassistant/components/zha/config_flow.py index 4bf255e95a0..481b79c5aa7 100644 --- a/homeassistant/components/zha/config_flow.py +++ b/homeassistant/components/zha/config_flow.py @@ -145,9 +145,9 @@ class ZhaFlowHandler(config_entries.ConfigFlow, domain=DOMAIN): if user_input is not None: auto_detected_data = await detect_radios(self._device_path) if auto_detected_data is None: - # This probably will not happen how they have - # have very specific usb matching, but there could - # be a problem with the device + # This path probably will not happen now that we have + # more precise USB matching unless there is a problem + # with the device return self.async_abort(reason="usb_probe_failed") return self.async_create_entry( title=self._title,