Update mypy-dev to 1.12.0a1 (#121428)

pull/118335/head
Marc Mueller 2024-07-07 16:10:17 +02:00 committed by GitHub
parent dc5ae9e0b2
commit 37ffe09add
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

View File

@ -248,6 +248,7 @@ async def async_start( # noqa: C901
if not payload:
return
assert isinstance(command_topic, str)
# Warn and add issues if there are duplicated topics
if warn_if_topic_duplicated(hass, command_topic, mac, tasmota_device_config):

View File

@ -11,7 +11,7 @@ astroid==3.2.2
coverage==7.5.3
freezegun==1.5.0
mock-open==1.4.0
mypy-dev==1.11.0a9
mypy-dev==1.12.0a1
pre-commit==3.7.1
pydantic==1.10.17
pylint==3.2.4

View File

@ -36,7 +36,7 @@ GENERAL_SETTINGS: Final[dict[str, str]] = {
"plugins": "pydantic.mypy",
"show_error_codes": "true",
"follow_imports": "normal",
"enable_incomplete_feature": ",".join( # noqa: FLY002
"enable_incomplete_feature": ", ".join( # noqa: FLY002
[
"NewGenericSyntax",
]