From 0177ff374177247cabf57dd27cdf15e6b8dc49f1 Mon Sep 17 00:00:00 2001 From: Tony Brobston Date: Wed, 1 May 2024 16:33:17 -0500 Subject: [PATCH] qualily -> quality, fix typo (#2162) --- docs/config_entries_config_flow_handler.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/config_entries_config_flow_handler.md b/docs/config_entries_config_flow_handler.md index bf0db793..9375354b 100644 --- a/docs/config_entries_config_flow_handler.md +++ b/docs/config_entries_config_flow_handler.md @@ -274,7 +274,7 @@ class ExampleConfigFlow(config_entries.ConfigFlow, domain=DOMAIN): ## Reauthentication -Gracefully handling authentication errors such as invalid, expired, or revoked tokens is needed to advance on the [Integration Qualily Scale](integration_quality_scale_index.md). This example of how to add reauth to the OAuth flow created by `script.scaffold` following the pattern in [Building a Python library](api_lib_auth.md#oauth2). +Gracefully handling authentication errors such as invalid, expired, or revoked tokens is needed to advance on the [Integration Quality Scale](integration_quality_scale_index.md). This example of how to add reauth to the OAuth flow created by `script.scaffold` following the pattern in [Building a Python library](api_lib_auth.md#oauth2). This example catches an authentication exception in config entry setup in `__init__.py` and instructs the user to visit the integrations page in order to reconfigure the integration.