Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pylint to 3.0.3 #105491

Merged
merged 2 commits into from Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion homeassistant/components/improv_ble/config_flow.py
Expand Up @@ -405,7 +405,7 @@ async def _try_call(func: Coroutine[Any, Any, _T]) -> _T:
raise AbortFlow("characteristic_missing") from err
except improv_ble_errors.CommandFailed:
raise
except Exception as err: # pylint: disable=broad-except
except Exception as err:
joostlek marked this conversation as resolved.
Show resolved Hide resolved
_LOGGER.exception("Unexpected exception")
raise AbortFlow("unknown") from err

Expand Down
1 change: 0 additions & 1 deletion homeassistant/components/mqtt/__init__.py
Expand Up @@ -247,7 +247,6 @@ async def async_check_config_schema(
schema(config)
except vol.Invalid as exc:
integration = await async_get_integration(hass, DOMAIN)
# pylint: disable-next=protected-access
message = conf_util.format_schema_error(
hass, exc, domain, config, integration.documentation
)
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/zha/__init__.py
Expand Up @@ -182,7 +182,7 @@ async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> b
) from exc
except TransientConnectionError as exc:
raise ConfigEntryNotReady from exc
except Exception as exc: # pylint: disable=broad-except
except Exception as exc:
_LOGGER.debug(
"Couldn't start coordinator (attempt %s of %s)",
attempt + 1,
Expand Down
2 changes: 1 addition & 1 deletion requirements_test.txt
Expand Up @@ -14,7 +14,7 @@ mock-open==1.4.0
mypy==1.7.1
pre-commit==3.5.0
pydantic==1.10.12
pylint==3.0.2
pylint==3.0.3
pylint-per-file-ignores==1.2.1
pipdeptree==2.11.0
pytest-asyncio==0.21.0
Expand Down