Fix wording error in DataUpdateCoordinator code comments (#881)

This commit is contained in:
J. Nick Koston 2021-04-10 08:37:30 -10:00 committed by GitHub
parent ac688ee498
commit 6bf8e60b20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,7 +65,7 @@ async def async_setup_entry(hass, entry, async_add_entities):
async with async_timeout.timeout(10):
return await api.fetch_data()
except ApiAuthError as err:
# Raising ConfigEntryAuthFailed with cancel future updates
# Raising ConfigEntryAuthFailed will cancel future updates
# and start a config flow with SOURCE_REAUTH (async_step_reauth)
raise ConfigEntryAuthFailed from err
except ApiError as err: