Bump benchmark dependencies (#21951)

This commit is contained in:
Micha Reiser 2025-12-12 18:05:57 +01:00 committed by GitHub
parent 0ebdebddd8
commit 90b29c9e87
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
19 changed files with 2052 additions and 1769 deletions

View File

@ -29,7 +29,6 @@ ERROR src/black/trans.py:544:10-23: `type[Err[CannotTransform] | Ok[TypeVar[T]]]
ERROR src/black/trans.py:752:55-68: `type[Err[CannotTransform] | Ok[TypeVar[T]]]` is not subscriptable [unsupported-operation]
ERROR src/black/trans.py:985:19-32: `type[Err[CannotTransform] | Ok[TypeVar[T]]]` is not subscriptable [unsupported-operation]
ERROR src/black/trans.py:1111:57-70: `type[Err[CannotTransform] | Ok[TypeVar[T]]]` is not subscriptable [unsupported-operation]
ERROR src/black/trans.py:1349:17-1350:27: `int` is not assignable to `int` (caused by inconsistent types when breaking cycles) [bad-assignment]
ERROR src/black/trans.py:1480:19-32: `type[Err[CannotTransform] | Ok[TypeVar[T]]]` is not subscriptable [unsupported-operation]
ERROR src/black/trans.py:1630:25-31: `csplit` may be uninitialized [unbound-name]
ERROR src/black/trans.py:2162:19-32: `type[Err[CannotTransform] | Ok[TypeVar[T]]]` is not subscriptable [unsupported-operation]
@ -43,4 +42,4 @@ ERROR src/blib2to3/pytree.py:670:24-34: `newcontent` may be uninitialized [unbou
ERROR src/blib2to3/pytree.py:756:24-39: `wrapped_content` may be uninitialized [unbound-name]
ERROR src/blib2to3/pytree.py:847:34-45: `save_stderr` may be uninitialized [unbound-name]
INFO Checking project configured at `<CWD>/pyrefly.toml`
INFO 44 errors (2 suppressed)
INFO 43 errors (2 suppressed)

View File

@ -12,7 +12,7 @@ ERROR discord/activity.py:286:9-16: Class member `Activity.to_dict` overrides pa
ERROR discord/activity.py:455:9-16: Class member `Game.to_dict` overrides parent class `BaseActivity` in an inconsistent manner [bad-override]
ERROR discord/activity.py:566:9-16: Class member `Streaming.to_dict` overrides parent class `BaseActivity` in an inconsistent manner [bad-override]
ERROR discord/activity.py:822:9-16: Class member `CustomActivity.to_dict` overrides parent class `BaseActivity` in an inconsistent manner [bad-override]
ERROR discord/activity.py:836:26-46: Cannot set item in `dict[str, int | str | None]` [unsupported-operation]
ERROR discord/activity.py:836:26-46: `Emoji` is not assignable to TypedDict key `emoji` with type `int | str | None` [bad-typed-dict-key]
ERROR discord/app_commands/checks.py:390:64-71: Argument `((Interaction[Any]) -> Cooldown | None) | ((Interaction[Any]) -> Coroutine[Any, Any, Cooldown | None])` is not assignable to parameter with type `(Interaction[Any]) -> MaybeAwaitable` in function `discord.utils.maybe_coroutine` [bad-argument-type]
ERROR discord/app_commands/commands.py:235:9-38: Object of class `FunctionType` has no attribute `pass_command_binding` [missing-attribute]
ERROR discord/app_commands/commands.py:393:29-76: Object of class `FunctionType` has no attribute `__discord_app_commands_param_description__` [missing-attribute]
@ -34,7 +34,7 @@ ERROR discord/app_commands/models.py:370:57-89: Cannot set item in `dict[str, st
ERROR discord/app_commands/models.py:372:57-61: Cannot set item in `dict[str, str]` [unsupported-operation]
ERROR discord/app_commands/models.py:375:40-53: Cannot set item in `dict[str, str]` [unsupported-operation]
ERROR discord/app_commands/models.py:378:34-74: Cannot set item in `dict[str, str]` [unsupported-operation]
ERROR discord/app_commands/models.py:539:42-97: Cannot set item in `dict[str, str | ChoiceT]` [unsupported-operation]
ERROR discord/app_commands/models.py:539:42-97: `dict[str, str]` is not assignable to TypedDict key `name_localizations` with type `str | ChoiceT` [bad-typed-dict-key]
ERROR discord/app_commands/models.py:926:16-67: Returned type `Guild | Member | None` is not assignable to declared return type `Member | None` [bad-return]
ERROR discord/app_commands/models.py:1057:31-58: `bool | object` is not assignable to attribute `required` with type `bool` [bad-assignment]
ERROR discord/app_commands/models.py:1058:55-76: `float | int | object | None` is not assignable to attribute `min_value` with type `float | int | None` [bad-assignment]
@ -50,10 +50,12 @@ ERROR discord/app_commands/models.py:1168:16-1175:10: Returned type `dict[str, d
ERROR discord/app_commands/models.py:1235:21-36: `int` is not assignable to TypedDict key `type` with type `Literal[1, 2, 3]` [bad-typed-dict-key]
ERROR discord/app_commands/transformers.py:110:67-73: Argument `locale_str | str` is not assignable to parameter `string` with type `locale_str` in function `discord.app_commands.translator.Translator._checked_translate` [bad-argument-type]
ERROR discord/app_commands/transformers.py:115:67-78: Argument `locale_str | str` is not assignable to parameter `string` with type `locale_str` in function `discord.app_commands.translator.Translator._checked_translate` [bad-argument-type]
ERROR discord/app_commands/transformers.py:139:31-76: Cannot set item in `dict[str, bool | int | str]` [unsupported-operation]
ERROR discord/app_commands/transformers.py:141:37-74: Cannot set item in `dict[str, bool | int | str]` [unsupported-operation]
ERROR discord/app_commands/transformers.py:149:29-43: Cannot set item in `dict[str, bool | int | str]` [unsupported-operation]
ERROR discord/app_commands/transformers.py:151:29-43: Cannot set item in `dict[str, bool | int | str]` [unsupported-operation]
ERROR discord/app_commands/transformers.py:139:31-76: `list[dict[str, Any]]` is not assignable to TypedDict key `choices` with type `bool | int | str` [bad-typed-dict-key]
ERROR discord/app_commands/transformers.py:141:37-74: `list[int]` is not assignable to TypedDict key `channel_types` with type `bool | int | str` [bad-typed-dict-key]
ERROR discord/app_commands/transformers.py:149:29-43: `float | int` is not assignable to TypedDict key `min_length` with type `bool | int | str` [bad-typed-dict-key]
ERROR discord/app_commands/transformers.py:149:29-43: `float | int` is not assignable to TypedDict key `min_value` with type `bool | int | str` [bad-typed-dict-key]
ERROR discord/app_commands/transformers.py:151:29-43: `float | int` is not assignable to TypedDict key `max_length` with type `bool | int | str` [bad-typed-dict-key]
ERROR discord/app_commands/transformers.py:151:29-43: `float | int` is not assignable to TypedDict key `max_value` with type `bool | int | str` [bad-typed-dict-key]
ERROR discord/app_commands/transformers.py:238:22-26: Expected a type form, got instance of `Self@Transformer` [not-a-type]
ERROR discord/app_commands/translator.py:119:61-85: Expected a type form, got instance of `Literal['Command[Any, ..., Any]']` [not-a-type]
ERROR discord/app_commands/translator.py:119:87-100: Expected a type form, got instance of `Literal['ContextMenu']` [not-a-type]
@ -127,16 +129,10 @@ ERROR discord/channel.py:2082:9-13: Class member `CategoryChannel.type` override
ERROR discord/channel.py:2478:9-16: Class member `ForumChannel._update` overrides parent class `GuildChannel` in an inconsistent manner [bad-override]
ERROR discord/channel.py:2512:9-13: Class member `ForumChannel.type` overrides parent class `GuildChannel` in an inconsistent manner [bad-override]
ERROR discord/channel.py:2619:15-20: Class member `ForumChannel.clone` overrides parent class `GuildChannel` in an inconsistent manner [bad-override]
ERROR discord/channel.py:2637:46-97: Cannot set item in `dict[str, bool | int | list[dict[str, Any]] | str | None]` [unsupported-operation]
ERROR discord/channel.py:3036:47-84: Cannot set item in `dict[str, int | str | None]` [unsupported-operation]
ERROR discord/client.py:723:59-70: Unpacked keyword argument `bool | int | None` is not assignable to parameter `initial` with type `bool` in function `discord.gateway.DiscordWebSocket.from_client` [bad-argument-type]
ERROR discord/client.py:723:59-70: Unpacked keyword argument `bool | int | None` is not assignable to parameter `gateway` with type `URL | None` in function `discord.gateway.DiscordWebSocket.from_client` [bad-argument-type]
ERROR discord/client.py:723:59-70: Unpacked keyword argument `bool | int | None` is not assignable to parameter `session` with type `str | None` in function `discord.gateway.DiscordWebSocket.from_client` [bad-argument-type]
ERROR discord/client.py:723:59-70: Unpacked keyword argument `bool | int | None` is not assignable to parameter `resume` with type `bool` in function `discord.gateway.DiscordWebSocket.from_client` [bad-argument-type]
ERROR discord/client.py:723:59-70: Unpacked keyword argument `bool | int | None` is not assignable to parameter `encoding` with type `str` in function `discord.gateway.DiscordWebSocket.from_client` [bad-argument-type]
ERROR discord/client.py:723:59-70: Unpacked keyword argument `bool | int | None` is not assignable to parameter `compress` with type `bool` in function `discord.gateway.DiscordWebSocket.from_client` [bad-argument-type]
ERROR discord/channel.py:2637:46-97: `dict[str, Any]` is not assignable to TypedDict key `default_reaction_emoji` with type `bool | int | list[dict[str, Any]] | str | None` [bad-typed-dict-key]
ERROR discord/channel.py:3036:47-84: `list[str]` is not assignable to TypedDict key `applied_tags` with type `int | str | None` [bad-typed-dict-key]
ERROR discord/client.py:731:33-105: No matching overload found for function `typing.MutableMapping.update` called with arguments: (sequence=int | None, resume=bool, session=str | None) [no-matching-overload]
ERROR discord/client.py:733:44-59: Cannot set item in `dict[str, bool | int | None]` [unsupported-operation]
ERROR discord/client.py:733:44-59: `URL` is not assignable to TypedDict key `gateway` with type `bool | int | None` [bad-typed-dict-key]
ERROR discord/client.py:756:37-762:22: No matching overload found for function `typing.MutableMapping.update` called with arguments: (sequence=int | None, gateway=URL, initial=Literal[False], resume=Literal[True], session=str | None) [no-matching-overload]
ERROR discord/client.py:782:33-787:18: No matching overload found for function `typing.MutableMapping.update` called with arguments: (sequence=int | None, gateway=URL, resume=Literal[True], session=str | None) [no-matching-overload]
ERROR discord/client.py:2975:83-99: Argument `int` is not assignable to parameter `owner_type` with type `Literal[1, 2]` in function `discord.http.HTTPClient.create_entitlement` [bad-argument-type]
@ -158,10 +154,7 @@ ERROR discord/components.py:1324:21-36: `int` is not assignable to TypedDict key
ERROR discord/components.py:1326:27-63: `list[Component]` is not assignable to TypedDict key `components` with type `list[ContainerChildComponent]` [bad-typed-dict-key]
ERROR discord/components.py:1380:21-36: `int` is not assignable to TypedDict key `type` with type `Literal[18]` [bad-typed-dict-key]
ERROR discord/components.py:1444:21-36: `int` is not assignable to TypedDict key `type` with type `Literal[19]` [bad-typed-dict-key]
ERROR discord/embeds.py:246:28-55: `Colour` is not assignable to attribute `_colour` with type `None` [bad-assignment]
ERROR discord/embeds.py:308:9-15: Class member `Embed.__eq__` overrides parent class `object` in an inconsistent manner [bad-override]
ERROR discord/embeds.py:343:28-33: `Colour` is not assignable to attribute `_colour` with type `None` [bad-assignment]
ERROR discord/embeds.py:345:28-47: `Colour` is not assignable to attribute `_colour` with type `None` [bad-assignment]
ERROR discord/embeds.py:362:31-35: `None` is not assignable to attribute `_timestamp` with type `datetime` [bad-assignment]
ERROR discord/emoji.py:119:14-20: Class member `Emoji._state` overrides parent class `AssetMixin` in an inconsistent manner [bad-override]
ERROR discord/emoji.py:166:9-12: Class member `Emoji.url` overrides parent class `AssetMixin` in an inconsistent manner [bad-override]
@ -283,38 +276,20 @@ ERROR discord/ext/commands/parameters.py:115:9-16: Class member `Parameter.repla
ERROR discord/ext/commands/parameters.py:324:5-15: Class member `Signature.parameters` overrides parent class `Signature` in an inconsistent manner [bad-override]
ERROR discord/ext/commands/view.py:151:53-64: Argument `str | None` is not assignable to parameter `close_quote` with type `str` in function `discord.ext.commands.errors.ExpectedClosingQuoteError.__init__` [bad-argument-type]
ERROR discord/ext/commands/view.py:162:57-68: Argument `str | None` is not assignable to parameter `close_quote` with type `str` in function `discord.ext.commands.errors.ExpectedClosingQuoteError.__init__` [bad-argument-type]
ERROR discord/ext/tasks/__init__.py:212:36-63: `datetime` is not assignable to attribute `_next_iteration` with type `None` [bad-assignment]
ERROR discord/ext/tasks/__init__.py:214:36-80: `datetime` is not assignable to attribute `_next_iteration` with type `None` [bad-assignment]
ERROR discord/ext/tasks/__init__.py:222:49-69: Argument `None` is not assignable to parameter `dt` with type `datetime` in function `Loop._try_sleep_until` [bad-argument-type]
ERROR discord/ext/tasks/__init__.py:224:44-64: `None` is not assignable to attribute `_last_iteration` with type `datetime` [bad-assignment]
ERROR discord/ext/tasks/__init__.py:225:44-71: `datetime` is not assignable to attribute `_next_iteration` with type `None` [bad-assignment]
ERROR discord/ext/tasks/__init__.py:231:56-100: `<=` is not supported between `None` and `datetime` [unsupported-operation]
ERROR discord/ext/tasks/__init__.py:242:53-73: Argument `None` is not assignable to parameter `dt` with type `datetime` in function `Loop._try_sleep_until` [bad-argument-type]
ERROR discord/ext/tasks/__init__.py:243:48-75: `datetime` is not assignable to attribute `_next_iteration` with type `None` [bad-assignment]
ERROR discord/ext/tasks/__init__.py:266:53-73: Argument `None` is not assignable to parameter `dt` with type `datetime` in function `Loop._try_sleep_until` [bad-argument-type]
ERROR discord/ext/tasks/__init__.py:301:26-29: `T` is not assignable to attribute `_injected` with type `None` [bad-assignment]
ERROR discord/ext/tasks/__init__.py:500:33-70: `tuple[type[OSError], type[GatewayNotFound], type[ConnectionClosed], type[ClientError], type[TimeoutError], *tuple[type[BaseException], ...]]` is not assignable to attribute `_valid_exception` with type `tuple[type[OSError], type[GatewayNotFound], type[ConnectionClosed], type[ClientError], type[TimeoutError]]` [bad-assignment]
ERROR discord/ext/tasks/__init__.py:509:33-35: `tuple[()]` is not assignable to attribute `_valid_exception` with type `tuple[type[OSError], type[GatewayNotFound], type[ConnectionClosed], type[ClientError], type[TimeoutError]]` [bad-assignment]
ERROR discord/ext/tasks/__init__.py:525:33-95: `tuple[type[ClientError] | type[ConnectionClosed] | type[GatewayNotFound] | type[OSError] | type[TimeoutError], ...]` is not assignable to attribute `_valid_exception` with type `tuple[type[OSError], type[GatewayNotFound], type[ConnectionClosed], type[ClientError], type[TimeoutError]]` [bad-assignment]
ERROR discord/ext/tasks/__init__.py:579:29-33: `FT` is not assignable to attribute `_before_loop` with type `None` [bad-assignment]
ERROR discord/ext/tasks/__init__.py:607:28-32: `FT` is not assignable to attribute `_after_loop` with type `None` [bad-assignment]
ERROR discord/ext/tasks/__init__.py:774:36-63: `datetime` is not assignable to attribute `_next_iteration` with type `None` [bad-assignment]
ERROR discord/ext/tasks/__init__.py:777:42-62: Argument `None` is not assignable to parameter `dt` with type `datetime` in function `SleepHandle.recalculate` [bad-argument-type]
ERROR discord/file.py:93:42-44: `(IOBase & PathLike[Any]) | (IOBase & bytes) | (IOBase & str) | BufferedIOBase` is not assignable to attribute `fp` with type `BufferedIOBase` [bad-assignment]
WARN discord/flags.py:234:24-29: Identity comparison `False is False` is always True [unnecessary-comparison]
WARN discord/flags.py:324:24-29: Identity comparison `False is False` is always True [unnecessary-comparison]
ERROR discord/flags.py:1784:9-20: Class member `ArrayFlags._from_value` overrides parent class `BaseFlags` in an inconsistent manner [bad-override]
ERROR discord/flags.py:1881:9-17: Class member `AutoModPresets.to_array` overrides parent class `ArrayFlags` in an inconsistent manner [bad-override]
ERROR discord/gateway.py:137:48-57: Multiple values for argument `name` in function `threading.Thread.__init__` [bad-keyword-argument]
ERROR discord/gateway.py:218:9-11: Class member `VoiceKeepAliveHandler.ws` overrides parent class `KeepAliveHandler` in an inconsistent manner [bad-override]
ERROR discord/gateway.py:466:13-34: Cannot set item in `int` [unsupported-operation]
ERROR discord/gateway.py:466:37-70: Cannot set item in `dict[str, bool | dict[str, str] | int | str | None]` [unsupported-operation]
ERROR discord/gateway.py:470:13-37: Cannot set item in `int` [unsupported-operation]
ERROR discord/gateway.py:470:40-475:14: Cannot set item in `dict[str, bool | dict[str, str] | int | str | None]` [unsupported-operation]
ERROR discord/gateway.py:478:13-36: Cannot set item in `int` [unsupported-operation]
ERROR discord/gateway.py:735:13-34: Cannot set item in `int` [unsupported-operation]
ERROR discord/gateway.py:735:37-42: Cannot set item in `dict[str, bool | int]` [unsupported-operation]
ERROR discord/gateway.py:738:13-37: Cannot set item in `int` [unsupported-operation]
ERROR discord/gateway.py:738:40-48: Cannot set item in `dict[str, bool | int]` [unsupported-operation]
ERROR discord/gateway.py:741:13-34: Cannot set item in `int` [unsupported-operation]
ERROR discord/gateway.py:741:37-42: Cannot set item in `dict[str, bool | int]` [unsupported-operation]
ERROR discord/guild.py:617:53-95: `object | None` is not assignable to attribute `max_stage_video_users` with type `int | None` [bad-assignment]
ERROR discord/guild.py:631:58-97: `object | None` is not assignable to attribute `approximate_presence_count` with type `int | None` [bad-assignment]
@ -367,24 +342,6 @@ ERROR discord/http.py:404:34-45: Object of class `reify` has no attribute `get`
ERROR discord/http.py:407:23-34: Object of class `reify` has no attribute `get` [missing-attribute]
ERROR discord/http.py:411:59-87: Cannot index into `reify` [bad-index]
ERROR discord/http.py:411:59-87: Cannot index into `reify[CIMultiDictProxy[str]]` [bad-index]
ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `method` with type `str` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type]
ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `protocols` with type `Iterable[str]` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type]
ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `timeout` with type `float` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type]
ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `receive_timeout` with type `float | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type]
ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `autoclose` with type `bool` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type]
ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `autoping` with type `bool` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type]
ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `heartbeat` with type `float | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type]
ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `origin` with type `str | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type]
ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `params` with type `Mapping[str, QueryVariable] | Sequence[tuple[str, QueryVariable]] | str | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type]
ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `headers` with type `CIMultiDict[str] | CIMultiDictProxy[str] | Iterable[tuple[istr | str, str]] | Mapping[istr, str] | Mapping[str, str] | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type]
ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `proxy` with type `URL | str | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type]
ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `ssl` with type `Fingerprint | SSLContext | bool` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type]
ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `verify_ssl` with type `bool | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type]
ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `fingerprint` with type `bytes | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type]
ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `ssl_context` with type `SSLContext | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type]
ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `proxy_headers` with type `CIMultiDict[str] | CIMultiDictProxy[str] | Iterable[tuple[istr | str, str]] | Mapping[istr, str] | Mapping[str, str] | None` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type]
ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `compress` with type `int` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type]
ERROR discord/http.py:566:53-61: Unpacked keyword argument `BasicAuth | bool | dict[str, str] | float | int | str | None` is not assignable to parameter `max_msg_size` with type `int` in function `aiohttp.client.ClientSession.ws_connect` [bad-argument-type]
ERROR discord/http.py:640:20-29: Cannot use `Ratelimit` as a context manager [bad-context-manager]
ERROR discord/http.py:661:40-60: Object of class `reify` has no attribute `get` [missing-attribute]
ERROR discord/http.py:664:49-92: `in` is not supported between `Literal['X-Ratelimit-Remaining']` and `reify` [not-iterable]
@ -392,8 +349,8 @@ ERROR discord/http.py:664:49-92: `in` is not supported between `Literal['X-Ratel
ERROR discord/http.py:707:36-56: Object of class `reify` has no attribute `get` [missing-attribute]
ERROR discord/http.py:801:44-52: Unpacked keyword argument `str` is not assignable to parameter `allow_redirects` with type `bool` in function `aiohttp.client.ClientSession.get` [bad-argument-type]
ERROR discord/http.py:1075:31-36: Cannot set item in `dict[str, str]` [unsupported-operation]
ERROR discord/http.py:1866:41-55: Cannot set item in `dict[str, bool | int]` [unsupported-operation]
ERROR discord/http.py:1869:48-74: Cannot set item in `dict[str, bool | int]` [unsupported-operation]
ERROR discord/http.py:1866:41-55: `int | str` is not assignable to TypedDict key `target_user_id` with type `bool | int` [bad-typed-dict-key]
ERROR discord/http.py:1869:48-74: `str` is not assignable to TypedDict key `target_application_id` with type `bool | int` [bad-typed-dict-key]
ERROR discord/http.py:2574:46-65: Cannot set item in `dict[str, list[Prompt]]` [unsupported-operation]
ERROR discord/http.py:2577:34-41: Cannot set item in `dict[str, list[Prompt]]` [unsupported-operation]
ERROR discord/http.py:2580:31-35: Cannot set item in `dict[str, list[Prompt]]` [unsupported-operation]
@ -620,4 +577,4 @@ ERROR discord/welcome_screen.py:104:33-48: Object of class `_EmojiTag` has no at
ERROR discord/welcome_screen.py:211:37-48: Cannot set item in `dict[str, list[Unknown]]` [unsupported-operation]
ERROR discord/welcome_screen.py:214:33-40: Cannot set item in `dict[str, list[Unknown]]` [unsupported-operation]
INFO Checking project configured at `<CWD>/pyrefly.toml`
INFO 617 errors (519 suppressed)
INFO 572 errors (518 suppressed)

View File

@ -698,9 +698,9 @@ discord/abc.py:687: error: Incompatible types in assignment (expression has type
discord/abc.py:694: error: Incompatible return value type (got "Dict[Optional[Role], PermissionOverwrite]", expected "Dict[Union[Role, Member, Object], PermissionOverwrite]") [return-value]
discord/abc.py:1031: error: Argument 5 to "edit_channel_permissions" of "HTTPClient" has incompatible type "int"; expected "Literal[0, 1]" [arg-type]
discord/abc.py:1269: error: Unexpected keyword argument "parent_id" for "update" of "TypedDict" [call-arg]
<TMPDIR>_/venv/lib/python3.8/site-packages/mypy/typeshed/stdlib/typing.pyi:960: note: "update" of "TypedDict" defined here
venv/lib/python3.8/site-packages/mypy/typeshed/stdlib/typing.pyi:960: note: "update" of "TypedDict" defined here
discord/abc.py:1269: error: Unexpected keyword argument "lock_permissions" for "update" of "TypedDict" [call-arg]
<TMPDIR>_/venv/lib/python3.8/site-packages/mypy/typeshed/stdlib/typing.pyi:960: note: "update" of "TypedDict" defined here
venv/lib/python3.8/site-packages/mypy/typeshed/stdlib/typing.pyi:960: note: "update" of "TypedDict" defined here
discord/abc.py:1815: error: Incompatible types in assignment (expression has type "reversed[MessagePin]", variable has type "List[MessagePin]") [assignment]
discord/abc.py:1821: error: Incompatible types in "yield" (actual type "Message", expected type "PinnedMessage") [misc]
discord/abc.py:2035: error: Incompatible types in assignment (expression has type "Callable[[Arg(int, 'retrieve'), Arg(Optional[Snowflake], 'after'), Arg(Optional[int], 'limit')], Coroutine[Any, Any, Any]]", variable has type "Callable[[Arg(int, 'retrieve'), Arg(Optional[Snowflake], 'around'), Arg(Optional[int], 'limit')], Coroutine[Any, Any, Any]]") [assignment]

View File

@ -37,8 +37,8 @@ discord/app_commands/commands.py:2026:40: error[invalid-type-arguments] Too many
discord/app_commands/commands.py:2053:49: error[invalid-type-arguments] Too many type arguments: expected 1, got 3
discord/app_commands/commands.py:2066:51: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, Unknown]` has no attribute `__name__`
discord/app_commands/commands.py:2129:23: error[unresolved-attribute] Object of type `((Interaction[Any], Member, /) -> Coroutine[Any, Any, Any]) | ((Interaction[Any], User, /) -> Coroutine[Any, Any, Any]) | ((Interaction[Any], Message, /) -> Coroutine[Any, Any, Any])` has no attribute `__name__`
discord/app_commands/commands.py:2477:17: error[invalid-assignment] Object of type `list[Unknown]` is not assignable to attribute `__discord_app_commands_checks__` on type `(((...) -> Coroutine[Any, Any, Unknown]) & ~Top[Command[Unknown, object, Unknown]] & ~ContextMenu & ~<Protocol with members '__discord_app_commands_checks__'>) | (((Interaction[Any], Member, /) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]] & ~ContextMenu & ~<Protocol with members '__discord_app_commands_checks__'>) | (((Interaction[Any], User, /) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]] & ~ContextMenu & ~<Protocol with members '__discord_app_commands_checks__'>) | (((Interaction[Any], Message, /) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]] & ~ContextMenu & ~<Protocol with members '__discord_app_commands_checks__'>)`
discord/app_commands/commands.py:2479:13: error[unresolved-attribute] Object of type `(((...) -> Coroutine[Any, Any, Unknown]) & ~Top[Command[Unknown, object, Unknown]] & ~ContextMenu) | (((Interaction[Any], Member, /) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]] & ~ContextMenu) | (((Interaction[Any], User, /) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]] & ~ContextMenu) | (((Interaction[Any], Message, /) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]] & ~ContextMenu)` has no attribute `__discord_app_commands_checks__`
discord/app_commands/commands.py:2477:17: error[invalid-assignment] Object of type `list[Unknown]` is not assignable to attribute `__discord_app_commands_checks__` on type `(((...) -> Coroutine[Any, Any, Unknown]) & ~Top[Command[Unknown, (), Unknown]] & ~ContextMenu & ~<Protocol with members '__discord_app_commands_checks__'>) | (((Interaction[Any], Member, /) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]] & ~ContextMenu & ~<Protocol with members '__discord_app_commands_checks__'>) | (((Interaction[Any], User, /) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]] & ~ContextMenu & ~<Protocol with members '__discord_app_commands_checks__'>) | (((Interaction[Any], Message, /) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]] & ~ContextMenu & ~<Protocol with members '__discord_app_commands_checks__'>)`
discord/app_commands/commands.py:2479:13: error[unresolved-attribute] Object of type `(((...) -> Coroutine[Any, Any, Unknown]) & ~Top[Command[Unknown, (), Unknown]] & ~ContextMenu) | (((Interaction[Any], Member, /) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]] & ~ContextMenu) | (((Interaction[Any], User, /) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]] & ~ContextMenu) | (((Interaction[Any], Message, /) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]] & ~ContextMenu)` has no attribute `__discord_app_commands_checks__`
discord/app_commands/errors.py:453:95: error[unresolved-attribute] Object of type `(() -> Coroutine[object, Never, object]) | ((...) -> Coroutine[Any, Any, Unknown])` has no attribute `__qualname__`
discord/app_commands/errors.py:460:88: error[unresolved-attribute] Object of type `((Interaction[Any], Member, /) -> Coroutine[Any, Any, Any]) | ((Interaction[Any], User, /) -> Coroutine[Any, Any, Any]) | ((Interaction[Any], Message, /) -> Coroutine[Any, Any, Any])` has no attribute `__qualname__`
discord/app_commands/models.py:926:16: error[invalid-return-type] Return type does not match returned value: expected `Member | None`, found `(Guild & ~AlwaysTruthy) | None | Member`
@ -115,7 +115,6 @@ discord/emoji.py:287:26: warning[possibly-missing-attribute] Attribute `http` ma
discord/emoji.py:292:54: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ConnectionState[Client]`, found `Any | None | ConnectionState[Client]`
discord/emoji.py:294:22: warning[possibly-missing-attribute] Attribute `http` may be missing on object of type `Any | None | ConnectionState[Client]`
discord/errors.py:30:10: error[unresolved-import] Cannot resolve imported module `requests`
discord/ext/commands/bot.py:175:36: error[invalid-type-arguments] Too many type arguments: expected 0, got 1
discord/ext/commands/bot.py:177:9: error[invalid-parameter-default] Default value of type `_DefaultRepr` is not assignable to annotated parameter type `HelpCommand | None`
discord/ext/commands/bot.py:296:41: error[invalid-type-arguments] Too many type arguments: expected 1, got 4
discord/ext/commands/bot.py:306:50: error[invalid-type-arguments] Too many type arguments: expected 1, got 4
@ -123,7 +122,6 @@ discord/ext/commands/bot.py:320:41: error[invalid-type-arguments] Too many type
discord/ext/commands/bot.py:330:50: error[invalid-type-arguments] Too many type arguments: expected 1, got 4
discord/ext/commands/bot.py:655:16: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, Any]` has no attribute `__name__`
discord/ext/commands/bot.py:681:16: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, Any]` has no attribute `__name__`
discord/ext/commands/bot.py:1544:40: error[invalid-type-arguments] Too many type arguments: expected 0, got 1
discord/ext/commands/bot.py:1546:13: error[invalid-parameter-default] Default value of type `_DefaultRepr` is not assignable to annotated parameter type `HelpCommand | None`
discord/ext/commands/cog.py:288:36: error[invalid-type-arguments] Type `<special form 'typing.Self'>` is not assignable to upper bound `Cog | None` of type variable `CogT@Command`
discord/ext/commands/cog.py:289:79: error[invalid-type-arguments] Type `<special form 'typing.Self'>` is not assignable to upper bound `Group | Cog` of type variable `GroupT@Command`
@ -144,29 +142,29 @@ discord/ext/commands/core.py:508:28: error[unresolved-attribute] Object of type
discord/ext/commands/core.py:544:24: error[unresolved-attribute] Object of type `(...) -> Any` has no attribute `__globals__`
discord/ext/commands/core.py:1552:22: error[no-matching-overload] No overload of function `command` matches arguments
discord/ext/commands/core.py:1609:22: error[no-matching-overload] No overload of function `group` matches arguments
discord/ext/commands/core.py:1942:17: error[invalid-assignment] Object of type `list[Unknown]` is not assignable to attribute `__commands_checks__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]] & ~<Protocol with members '__commands_checks__'>`
discord/ext/commands/core.py:1944:13: error[unresolved-attribute] Object of type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]]` has no attribute `__commands_checks__`
discord/ext/commands/core.py:1949:9: error[unresolved-attribute] Unresolved attribute `predicate` on type `def decorator(func: Command[Any, @Todo, Any] | ((...) -> Coroutine[Any, Any, Any])) -> Command[Any, @Todo, Any] | ((...) -> Coroutine[Any, Any, Any])`.
discord/ext/commands/core.py:1956:9: error[unresolved-attribute] Unresolved attribute `predicate` on type `def decorator(func: Command[Any, @Todo, Any] | ((...) -> Coroutine[Any, Any, Any])) -> Command[Any, @Todo, Any] | ((...) -> Coroutine[Any, Any, Any])`.
discord/ext/commands/core.py:1942:17: error[invalid-assignment] Object of type `list[Unknown]` is not assignable to attribute `__commands_checks__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]] & ~<Protocol with members '__commands_checks__'>`
discord/ext/commands/core.py:1944:13: error[unresolved-attribute] Object of type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]]` has no attribute `__commands_checks__`
discord/ext/commands/core.py:1949:9: error[unresolved-attribute] Unresolved attribute `predicate` on type `def decorator(func: Command[Any, (...), Any] | ((...) -> Coroutine[Any, Any, Any])) -> Command[Any, (...), Any] | ((...) -> Coroutine[Any, Any, Any])`.
discord/ext/commands/core.py:1956:9: error[unresolved-attribute] Unresolved attribute `predicate` on type `def decorator(func: Command[Any, (...), Any] | ((...) -> Coroutine[Any, Any, Any])) -> Command[Any, (...), Any] | ((...) -> Coroutine[Any, Any, Any])`.
discord/ext/commands/core.py:2358:32: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `(Context[object], /) -> bool | Coroutine[Never, object, bool]`, found `def predicate[BotT](ctx: Context[BotT@predicate]) -> bool`
discord/ext/commands/core.py:2365:17: error[invalid-assignment] Object of type `list[Unknown]` is not assignable to attribute `__commands_checks__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]] & ~<Protocol with members '__commands_checks__'>`
discord/ext/commands/core.py:2367:13: error[unresolved-attribute] Object of type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]]` has no attribute `__commands_checks__`
discord/ext/commands/core.py:2368:13: error[invalid-assignment] Object of type `Literal[True]` is not assignable to attribute `__discord_app_commands_guild_only__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]]`
discord/ext/commands/core.py:2373:9: error[unresolved-attribute] Unresolved attribute `predicate` on type `def decorator(func: Command[Unknown, Unknown, Unknown] | ((...) -> Coroutine[Any, Any, Any])) -> Command[Unknown, Unknown, Unknown] | ((...) -> Coroutine[Any, Any, Any])`.
discord/ext/commands/core.py:2380:9: error[unresolved-attribute] Unresolved attribute `predicate` on type `def decorator(func: Command[Unknown, Unknown, Unknown] | ((...) -> Coroutine[Any, Any, Any])) -> Command[Unknown, Unknown, Unknown] | ((...) -> Coroutine[Any, Any, Any])`.
discord/ext/commands/core.py:2365:17: error[invalid-assignment] Object of type `list[Unknown]` is not assignable to attribute `__commands_checks__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]] & ~<Protocol with members '__commands_checks__'>`
discord/ext/commands/core.py:2367:13: error[unresolved-attribute] Object of type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]]` has no attribute `__commands_checks__`
discord/ext/commands/core.py:2368:13: error[invalid-assignment] Object of type `Literal[True]` is not assignable to attribute `__discord_app_commands_guild_only__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]]`
discord/ext/commands/core.py:2373:9: error[unresolved-attribute] Unresolved attribute `predicate` on type `def decorator(func: Command[Unknown, (...), Unknown] | ((...) -> Coroutine[Any, Any, Any])) -> Command[Unknown, (...), Unknown] | ((...) -> Coroutine[Any, Any, Any])`.
discord/ext/commands/core.py:2380:9: error[unresolved-attribute] Unresolved attribute `predicate` on type `def decorator(func: Command[Unknown, (...), Unknown] | ((...) -> Coroutine[Any, Any, Any])) -> Command[Unknown, (...), Unknown] | ((...) -> Coroutine[Any, Any, Any])`.
discord/ext/commands/core.py:2433:32: error[invalid-argument-type] Argument to bound method `append` is incorrect: Expected `(Context[object], /) -> bool | Coroutine[Never, object, bool]`, found `def predicate[BotT](ctx: Context[BotT@predicate]) -> bool`
discord/ext/commands/core.py:2440:17: error[invalid-assignment] Object of type `list[Unknown]` is not assignable to attribute `__commands_checks__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]] & ~<Protocol with members '__commands_checks__'>`
discord/ext/commands/core.py:2442:13: error[unresolved-attribute] Object of type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]]` has no attribute `__commands_checks__`
discord/ext/commands/core.py:2443:13: error[invalid-assignment] Object of type `Literal[True]` is not assignable to attribute `__discord_app_commands_is_nsfw__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]]`
discord/ext/commands/core.py:2448:9: error[unresolved-attribute] Unresolved attribute `predicate` on type `def decorator(func: Command[Unknown, Unknown, Unknown] | ((...) -> Coroutine[Any, Any, Any])) -> Command[Unknown, Unknown, Unknown] | ((...) -> Coroutine[Any, Any, Any])`.
discord/ext/commands/core.py:2455:9: error[unresolved-attribute] Unresolved attribute `predicate` on type `def decorator(func: Command[Unknown, Unknown, Unknown] | ((...) -> Coroutine[Any, Any, Any])) -> Command[Unknown, Unknown, Unknown] | ((...) -> Coroutine[Any, Any, Any])`.
discord/ext/commands/core.py:2499:13: error[invalid-assignment] Object of type `CooldownMapping[Unknown]` is not assignable to attribute `__commands_cooldown__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]]`
discord/ext/commands/core.py:2547:13: error[invalid-assignment] Object of type `DynamicCooldownMapping[Unknown]` is not assignable to attribute `__commands_cooldown__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]]`
discord/ext/commands/core.py:2582:13: error[invalid-assignment] Object of type `MaxConcurrency` is not assignable to attribute `__commands_max_concurrency__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]]`
discord/ext/commands/core.py:2440:17: error[invalid-assignment] Object of type `list[Unknown]` is not assignable to attribute `__commands_checks__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]] & ~<Protocol with members '__commands_checks__'>`
discord/ext/commands/core.py:2442:13: error[unresolved-attribute] Object of type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]]` has no attribute `__commands_checks__`
discord/ext/commands/core.py:2443:13: error[invalid-assignment] Object of type `Literal[True]` is not assignable to attribute `__discord_app_commands_is_nsfw__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]]`
discord/ext/commands/core.py:2448:9: error[unresolved-attribute] Unresolved attribute `predicate` on type `def decorator(func: Command[Unknown, (...), Unknown] | ((...) -> Coroutine[Any, Any, Any])) -> Command[Unknown, (...), Unknown] | ((...) -> Coroutine[Any, Any, Any])`.
discord/ext/commands/core.py:2455:9: error[unresolved-attribute] Unresolved attribute `predicate` on type `def decorator(func: Command[Unknown, (...), Unknown] | ((...) -> Coroutine[Any, Any, Any])) -> Command[Unknown, (...), Unknown] | ((...) -> Coroutine[Any, Any, Any])`.
discord/ext/commands/core.py:2499:13: error[invalid-assignment] Object of type `CooldownMapping[Unknown]` is not assignable to attribute `__commands_cooldown__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]]`
discord/ext/commands/core.py:2547:13: error[invalid-assignment] Object of type `DynamicCooldownMapping[Unknown]` is not assignable to attribute `__commands_cooldown__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]]`
discord/ext/commands/core.py:2582:13: error[invalid-assignment] Object of type `MaxConcurrency` is not assignable to attribute `__commands_max_concurrency__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]]`
discord/ext/commands/core.py:2632:32: error[invalid-argument-type] Argument to bound method `before_invoke` is incorrect: Expected `((object, Unknown, /) -> Coroutine[Never, object, Never]) | ((Unknown, /) -> Coroutine[Never, object, Never])`, found `((CogT@before_invoke, ContextT@before_invoke, /) -> Coroutine[Any, Any, Any]) | ((ContextT@before_invoke, /) -> Coroutine[Any, Any, Any])`
discord/ext/commands/core.py:2634:13: error[invalid-assignment] Object of type `((CogT@before_invoke, ContextT@before_invoke, /) -> Coroutine[Any, Any, Any]) | ((ContextT@before_invoke, /) -> Coroutine[Any, Any, Any])` is not assignable to attribute `__before_invoke__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]]`
discord/ext/commands/core.py:2634:13: error[invalid-assignment] Object of type `((CogT@before_invoke, ContextT@before_invoke, /) -> Coroutine[Any, Any, Any]) | ((ContextT@before_invoke, /) -> Coroutine[Any, Any, Any])` is not assignable to attribute `__before_invoke__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]]`
discord/ext/commands/core.py:2655:31: error[invalid-argument-type] Argument to bound method `after_invoke` is incorrect: Expected `((object, Unknown, /) -> Coroutine[Never, object, Never]) | ((Unknown, /) -> Coroutine[Never, object, Never])`, found `((CogT@after_invoke, ContextT@after_invoke, /) -> Coroutine[Any, Any, Any]) | ((ContextT@after_invoke, /) -> Coroutine[Any, Any, Any])`
discord/ext/commands/core.py:2657:13: error[invalid-assignment] Object of type `((CogT@after_invoke, ContextT@after_invoke, /) -> Coroutine[Any, Any, Any]) | ((ContextT@after_invoke, /) -> Coroutine[Any, Any, Any])` is not assignable to attribute `__after_invoke__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, object, Unknown]]`
discord/ext/commands/core.py:2657:13: error[invalid-assignment] Object of type `((CogT@after_invoke, ContextT@after_invoke, /) -> Coroutine[Any, Any, Any]) | ((ContextT@after_invoke, /) -> Coroutine[Any, Any, Any])` is not assignable to attribute `__after_invoke__` on type `((...) -> Coroutine[Any, Any, Any]) & ~Top[Command[Unknown, (), Unknown]]`
discord/ext/commands/help.py:309:9: error[invalid-assignment] Implicit shadowing of function `get_commands`
discord/ext/commands/help.py:310:9: error[invalid-assignment] Implicit shadowing of function `walk_commands`
discord/ext/commands/help.py:1255:9: error[invalid-method-override] Invalid override of method `get_destination`: Definition is incompatible with `HelpCommand.get_destination`
@ -177,6 +175,7 @@ discord/ext/commands/hybrid.py:176:49: error[unresolved-attribute] Object of typ
discord/ext/commands/hybrid.py:232:13: error[unresolved-attribute] Unresolved attribute `__hybrid_command_flag__` on type `(...) -> Any`.
discord/ext/commands/hybrid.py:328:9: error[unresolved-attribute] Unresolved attribute `__signature__` on type `(...) -> Coroutine[Any, Any, T@HybridAppCommand]`.
discord/ext/commands/hybrid.py:338:17: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, T@HybridAppCommand]` has no attribute `__signature__`
discord/ext/commands/hybrid.py:430:45: error[invalid-argument-type] Argument to function `maybe_coroutine` is incorrect: Expected `Interaction[ClientT@interaction_check]`, found `Interaction[Client]`
discord/ext/commands/hybrid.py:512:37: error[invalid-type-arguments] Too many type arguments: expected 1, got 4
discord/ext/commands/hybrid.py:563:9: error[invalid-method-override] Invalid override of method `_ensure_assignment_on_copy`: Definition is incompatible with `Command._ensure_assignment_on_copy`
discord/ext/commands/hybrid.py:731:9: error[invalid-method-override] Invalid override of method `_ensure_assignment_on_copy`: Definition is incompatible with `Command._ensure_assignment_on_copy`
@ -207,6 +206,8 @@ discord/file.py:160:9: error[invalid-assignment] Implicit shadowing of function
discord/flags.py:1784:9: error[invalid-method-override] Invalid override of method `_from_value`: Definition is incompatible with `BaseFlags._from_value`
discord/flags.py:1881:9: error[invalid-method-override] Invalid override of method `to_array`: Definition is incompatible with `ArrayFlags.to_array`
discord/gateway.py:137:48: error[parameter-already-assigned] Multiple values provided for parameter `name` of bound method `__init__`
discord/gateway.py:402:13: error[invalid-assignment] Implicit shadowing of function `send`
discord/gateway.py:403:13: error[invalid-assignment] Implicit shadowing of function `log_receive`
discord/gateway.py:466:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `int`
discord/gateway.py:470:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `int`
discord/gateway.py:478:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `int`
@ -275,7 +276,7 @@ discord/soundboard.py:301:22: warning[possibly-missing-attribute] Attribute `htt
discord/soundboard.py:302:50: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `ConnectionState[Client]`, found `Any | None | ConnectionState[Client]`
discord/soundboard.py:325:15: warning[possibly-missing-attribute] Attribute `http` may be missing on object of type `Any | None | ConnectionState[Client]`
discord/state.py:263:13: error[invalid-assignment] Implicit shadowing of function `store_user`
discord/state.py:551:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[VoiceChannel | StageChannel | ForumChannel | ... omitted 5 union elements, Guild | None]`, found `tuple[(Unknown & ~AlwaysFalsy) | (Guild & ~AlwaysTruthy & ~AlwaysFalsy) | (VoiceChannel & ~AlwaysFalsy) | ... omitted 6 union elements, Guild | None]`
discord/state.py:551:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[VoiceChannel | StageChannel | ForumChannel | ... omitted 5 union elements, Guild | None]`, found `tuple[(DMChannel & ~AlwaysFalsy) | (Guild & ~AlwaysTruthy & ~AlwaysFalsy) | (VoiceChannel & ~AlwaysFalsy) | ... omitted 6 union elements, Guild | None]`
discord/state.py:822:31: error[invalid-key] Unknown key "data" for TypedDict `PingInteraction`: Unknown key "data"
discord/state.py:823:36: error[invalid-key] Unknown key "custom_id" for TypedDict `ChatInputApplicationCommandInteractionData`: Unknown key "custom_id"
discord/state.py:823:36: error[invalid-key] Unknown key "custom_id" for TypedDict `UserApplicationCommandInteractionData`: Unknown key "custom_id"
@ -403,4 +404,4 @@ discord/webhook/sync.py:522:9: error[invalid-method-override] Invalid override o
discord/webhook/sync.py:652:16: error[unresolved-import] Cannot resolve imported module `requests`
discord/webhook/sync.py:695:16: error[unresolved-import] Cannot resolve imported module `requests`
discord/welcome_screen.py:104:33: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `(Unknown & _EmojiTag) | PartialEmoji | Emoji | (str & _EmojiTag)`
Found 405 diagnostics
Found 406 diagnostics

File diff suppressed because it is too large Load Diff

View File

@ -32036,8 +32036,6 @@
  Attribute "pid" is unknown (reportAttributeAccessIssue)
<CWD>/homeassistant/components/systemmonitor/coordinator.py:253:33 - error: Cannot access attribute "name" for class "Error"
  Attribute "name" is unknown (reportAttributeAccessIssue)
<CWD>/homeassistant/components/systemmonitor/coordinator.py:266:38 - error: "sensors_temperatures" is not a known attribute of module "psutil" (reportAttributeAccessIssue)
<CWD>/homeassistant/components/systemmonitor/coordinator.py:274:44 - error: "sensors_fans" is not a known attribute of module "psutil" (reportAttributeAccessIssue)
<CWD>/homeassistant/components/systemmonitor/sensor.py
<CWD>/homeassistant/components/systemmonitor/sensor.py:643:14 - error: "entity_description" overrides symbol of same name in class "Entity"
  Variable is mutable so its type is invariant
@ -42035,4 +42033,4 @@
<CWD>/homeassistant/util/loop.py:164:16 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable)
<CWD>/homeassistant/util/loop.py:164:60 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable)
<CWD>/homeassistant/util/loop.py:165:17 - error: "integration_frame" is possibly unbound (reportPossiblyUnboundVariable)
19459 errors, 18 warnings, 0 informations
19457 errors, 18 warnings, 0 informations

View File

@ -53,6 +53,6 @@ homeassistant/runner.py:284: error: function asyncio.events.set_event_loop_polic
homeassistant/scripts/auth.py:51: error: function asyncio.events.set_event_loop_policy is deprecated: Deprecated since Python 3.14; will be removed in Python 3.16. [deprecated]
homeassistant/scripts/__init__.py:64: error: function asyncio.events.set_event_loop_policy is deprecated: Deprecated since Python 3.14; will be removed in Python 3.16. [deprecated]
Found 54 errors in 13 files (checked 8626 source files)
/Users/micha/.local/share/uv/python/cpython-3.14.0-macos-aarch64-none/lib/python3.14/importlib/__init__.py:88: UserWarning: Core Pydantic V1 functionality isn't compatible with Python 3.14 or greater.
/home/micha/.local/share/uv/python/cpython-3.14.2-linux-x86_64-gnu/lib/python3.14/importlib/__init__.py:88: UserWarning: Core Pydantic V1 functionality isn't compatible with Python 3.14 or greater.
return _bootstrap._gcd_import(name[level:], package, level)
Warning: unused section(s) in mypy.ini: [mypy-tests.*]

View File

@ -92,9 +92,6 @@ homeassistant/components/alert/__init__.py:107:17: error[invalid-argument-type]
homeassistant/components/alexa/auth.py:171:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `None`
homeassistant/components/alexa/auth.py:173:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `None`
homeassistant/components/alexa/auth.py:175:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `None`
homeassistant/components/alexa/state_report.py:341:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]`
homeassistant/components/alexa/state_report.py:342:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _async_entity_state_listener(event_: Event[EventStateChangedData]) -> CoroutineType[Any, Any, None]`
homeassistant/components/alexa/state_report.py:343:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _async_entity_state_filter(data: EventStateChangedData) -> bool`
homeassistant/components/alpha_vantage/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `alpha_vantage.foreignexchange`
homeassistant/components/alpha_vantage/sensor.py:9:6: error[unresolved-import] Cannot resolve imported module `alpha_vantage.timeseries`
homeassistant/components/altruist/sensor.py:274:16: error[unresolved-attribute] Object of type `SensorEntityDescription` has no attribute `native_value_fn`
@ -111,11 +108,7 @@ homeassistant/components/amcrest/camera.py:266:17: error[invalid-argument-type]
homeassistant/components/amcrest/sensor.py:9:6: error[unresolved-import] Cannot resolve imported module `amcrest`
homeassistant/components/ampio/air_quality.py:8:6: error[unresolved-import] Cannot resolve imported module `asmog`
homeassistant/components/analytics/analytics.py:182:16: error[invalid-return-type] Return type does not match returned value: expected `AnalyticsPlatformProtocol | None`, found `ModuleType`
homeassistant/components/androidtv/entity.py:46:43: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/androidtv/entity.py:46:82: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/androidtv/entity.py:54:42: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/androidtv/entity.py:55:43: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/androidtv/entity.py:75:21: error[unresolved-attribute] Object of type `(...) -> Awaitable[Unknown]` has no attribute `__name__`
homeassistant/components/androidtv/entity.py:75:21: error[unresolved-attribute] Object of type `(...) -> Awaitable[_R@adb_decorator]` has no attribute `__name__`
homeassistant/components/anel_pwrctrl/switch.py:9:6: error[unresolved-import] Cannot resolve imported module `anel_pwrctrl`
homeassistant/components/anglian_water/config_flow.py:82:44: warning[possibly-missing-attribute] Attribute `refresh_token` may be missing on object of type `(str & BaseAuth) | MSOB2CAuth`
homeassistant/components/anthemav/config_flow.py:74:47: error[unresolved-attribute] Object of type `Protocol` has no attribute `macaddress`
@ -133,13 +126,10 @@ homeassistant/components/anthropic/entity.py:428:20: error[unresolved-reference]
homeassistant/components/anthropic/entity.py:504:21: error[unresolved-reference] Name `current_tool_args` used when not defined
homeassistant/components/anthropic/entity.py:655:44: warning[possibly-missing-attribute] Attribute `attachments` may be missing on object of type `SystemContent | UserContent | AssistantContent | ToolResultContent`
homeassistant/components/anthropic/entity.py:667:64: warning[possibly-missing-attribute] Attribute `attachments` may be missing on object of type `SystemContent | UserContent | AssistantContent | ToolResultContent`
homeassistant/components/apache_kafka/__init__.py:133:37: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]`
homeassistant/components/apache_kafka/__init__.py:133:58: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method Self@start.write(event: Event[EventStateChangedData]) -> CoroutineType[Any, Any, None]`
homeassistant/components/api/__init__.py:286:28: error[invalid-argument-type] Argument to bound method `async_set` is incorrect: Expected `str`, found `dict[str, dict[str, Any] | list[Any] | str | ... omitted 3 union elements] | list[dict[str, Any] | list[Any] | str | ... omitted 3 union elements] | str | int | float`
homeassistant/components/api/__init__.py:286:39: error[invalid-argument-type] Argument to bound method `async_set` is incorrect: Expected `Mapping[str, Any] | None`, found `dict[str, dict[str, Any] | list[Any] | str | ... omitted 3 union elements] | list[dict[str, Any] | list[Any] | str | ... omitted 3 union elements] | str | ... omitted 3 union elements`
homeassistant/components/api/__init__.py:286:51: error[invalid-argument-type] Argument to bound method `async_set` is incorrect: Expected `bool`, found `dict[str, Any] | list[Any] | str | ... omitted 3 union elements`
homeassistant/components/api/__init__.py:431:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]`
homeassistant/components/api/__init__.py:432:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _async_save_changed_entities(event: Event[EventStateChangedData]) -> None`
homeassistant/components/api/__init__.py:356:21: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["new_state", "old_state"]` and value of type `State & ~AlwaysFalsy` on object of type `dict[str, JsonValueType]`
homeassistant/components/apple_tv/__init__.py:151:10: error[invalid-type-form] Variable of type `Never` is not allowed in a type expression
homeassistant/components/apple_tv/__init__.py:284:30: error[invalid-type-form] Variable of type `Never` is not allowed in a type expression
homeassistant/components/apple_tv/__init__.py:308:25: error[invalid-type-form] Variable of type `Never` is not allowed in a type expression
@ -236,12 +226,12 @@ homeassistant/components/atag/water_heater.py:68:16: warning[possibly-missing-at
homeassistant/components/aten_pe/switch.py:8:6: error[unresolved-import] Cannot resolve imported module `atenpdu`
homeassistant/components/atome/sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `pyatome.client`
homeassistant/components/august/__init__.py:73:38: error[invalid-argument-type] Argument to bound method `async_setup` is incorrect: Expected `Config`, found `dict[Unknown | str, Unknown | Brand]`
homeassistant/components/august/__init__.py:73:38: error[missing-typed-dict-key] Missing required key 'username' in TypedDict `Config` constructor
homeassistant/components/august/__init__.py:73:38: error[missing-typed-dict-key] Missing required key 'password' in TypedDict `Config` constructor
homeassistant/components/august/__init__.py:73:38: error[missing-typed-dict-key] Missing required key 'login_method' in TypedDict `Config` constructor
homeassistant/components/august/__init__.py:73:38: error[missing-typed-dict-key] Missing required key 'access_token_cache_file' in TypedDict `Config` constructor
homeassistant/components/august/__init__.py:73:38: error[missing-typed-dict-key] Missing required key 'install_id' in TypedDict `Config` constructor
homeassistant/components/august/__init__.py:73:38: error[missing-typed-dict-key] Missing required key 'login_method' in TypedDict `Config` constructor
homeassistant/components/august/__init__.py:73:38: error[missing-typed-dict-key] Missing required key 'password' in TypedDict `Config` constructor
homeassistant/components/august/__init__.py:73:38: error[missing-typed-dict-key] Missing required key 'timeout' in TypedDict `Config` constructor
homeassistant/components/august/__init__.py:73:38: error[missing-typed-dict-key] Missing required key 'username' in TypedDict `Config` constructor
homeassistant/components/august/binary_sensor.py:75:9: error[invalid-argument-type] Argument is incorrect: Expected `(AugustData, DoorbellDetail | LockDetail, /) -> Activity | None`, found `def retrieve_online_state(data: AugustData, detail: DoorbellDetail | LockDetail) -> bool`
homeassistant/components/august/binary_sensor.py:103:12: warning[possibly-missing-attribute] Attribute `doorsense` may be missing on object of type `DoorbellDetail | LockDetail`
homeassistant/components/august/binary_sensor.py:106:12: warning[possibly-missing-attribute] Attribute `doorbell` may be missing on object of type `DoorbellDetail | LockDetail`
@ -310,6 +300,7 @@ homeassistant/components/azure_storage/backup.py:80:53: error[unresolved-attribu
homeassistant/components/azure_storage/backup.py:85:55: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@handle_backup_errors]` has no attribute `__name__`
homeassistant/components/azure_storage/backup.py:90:17: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@handle_backup_errors]` has no attribute `__name__`
homeassistant/components/azure_storage/backup.py:95:53: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@handle_backup_errors]` has no attribute `__name__`
homeassistant/components/azure_storage/backup.py:145:13: error[invalid-argument-type] Argument is incorrect: Expected `bytes | str | Iterable[AnyStr@upload_blob] | AsyncIterable[AnyStr@upload_blob]`, found `AsyncIterator[bytes]`
homeassistant/components/backblaze_b2/__init__.py:51:16: error[invalid-return-type] Return type does not match returned value: expected `b2sdk.v2.bucket.Bucket`, found `b2sdk._internal.bucket.Bucket`
homeassistant/components/backblaze_b2/backup.py:95:42: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, T@handle_b2_errors]` has no attribute `__name__`
homeassistant/components/backup/manager.py:1610:16: error[invalid-return-type] Return type does not match returned value: expected `StoredKnownBackup`, found `dict[Unknown | str, Unknown | str | list[dict[Unknown | str, Unknown | str | None] | Unknown] | list[str]]`
@ -434,7 +425,6 @@ homeassistant/components/caldav/todo.py:71:39: error[invalid-argument-type] Argu
homeassistant/components/caldav/todo.py:75:36: error[invalid-argument-type] Argument to function `get_attr_value` is incorrect: Expected `CalendarObjectResource`, found `~AlwaysFalsy`
homeassistant/components/caldav/todo.py:84:28: error[invalid-argument-type] Argument to function `get_attr_value` is incorrect: Expected `CalendarObjectResource`, found `~AlwaysFalsy`
homeassistant/components/caldav/todo.py:88:36: error[invalid-argument-type] Argument to function `get_attr_value` is incorrect: Expected `CalendarObjectResource`, found `~AlwaysFalsy`
homeassistant/components/calendar/trigger.py:172:27: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/components/cambridge_audio/entity.py:32:38: error[unresolved-attribute] Object of type `(...) -> Awaitable[None]` has no attribute `__name__`
homeassistant/components/canary/camera.py:173:17: error[invalid-argument-type] Argument to function `async_aiohttp_proxy_stream` is incorrect: Expected `StreamReader`, found `StreamReader`
homeassistant/components/cast/const.py:27:36: error[invalid-type-arguments] Too many type arguments to class `SignalType`: expected 0, got 1
@ -444,9 +434,7 @@ homeassistant/components/cast/discovery.py:64:13: error[invalid-method-override]
homeassistant/components/cast/discovery.py:68:13: error[invalid-method-override] Invalid override of method `update_cast`: Definition is incompatible with `AbstractCastListener.update_cast`
homeassistant/components/cast/helpers.py:132:13: error[unknown-argument] Argument `is_dynamic_group` does not match any known parameter
homeassistant/components/cast/helpers.py:268:12: error[unresolved-attribute] Object of type `object` has no attribute `ClientError`
homeassistant/components/cast/media_player.py:94:39: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/cast/media_player.py:95:34: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/cast/media_player.py:105:46: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__name__`
homeassistant/components/cast/media_player.py:105:46: error[unresolved-attribute] Object of type `(...) -> _R@api_error` has no attribute `__name__`
homeassistant/components/cast/media_player.py:353:28: warning[possibly-missing-attribute] Attribute `status` may be missing on object of type `Chromecast | None`
homeassistant/components/cast/media_player.py:354:29: warning[possibly-missing-attribute] Attribute `media_controller` may be missing on object of type `Chromecast | None`
homeassistant/components/cast/media_player.py:460:35: warning[possibly-missing-attribute] Attribute `get_multizone_memberships` may be missing on object of type `Unknown | None`
@ -475,8 +463,6 @@ homeassistant/components/cloud/__init__.py:314:51: error[invalid-argument-type]
homeassistant/components/cloud/__init__.py:314:51: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Literal["development", "production"]`, found `Unknown | str`
homeassistant/components/cloud/__init__.py:314:51: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `dict[Literal["acme_directory", "llm_connection_details", "relayer_connect", "remote_access_resolve_dns_cname", "subscription_info", "subscription_migrate_paypal", "voice_connection_details"], str] | None`, found `Unknown | str`
homeassistant/components/cloud/ai_task.py:132:16: warning[possibly-missing-attribute] Attribute `content` may be missing on object of type `SystemContent | UserContent | AssistantContent | ToolResultContent`
homeassistant/components/cloud/alexa_config.py:272:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]`
homeassistant/components/cloud/alexa_config.py:273:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method Self@async_initialize._handle_entity_registry_updated(event: Event[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]) -> CoroutineType[Any, Any, None]`
homeassistant/components/cloud/alexa_config.py:543:28: error[invalid-key] Unknown key "changes" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "changes"
homeassistant/components/cloud/alexa_config.py:547:45: error[invalid-key] Unknown key "old_entity_id" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "old_entity_id"
homeassistant/components/cloud/client.py:97:33: error[unresolved-attribute] Object of type `object` has no attribute `AppRunner`
@ -488,10 +474,6 @@ homeassistant/components/cloud/entity.py:127:21: error[invalid-argument-type] Ar
homeassistant/components/cloud/entity.py:461:44: warning[possibly-missing-attribute] Attribute `attachments` may be missing on object of type `SystemContent | UserContent | AssistantContent | ToolResultContent`
homeassistant/components/cloud/entity.py:462:64: warning[possibly-missing-attribute] Attribute `attachments` may be missing on object of type `SystemContent | UserContent | AssistantContent | ToolResultContent`
homeassistant/components/cloud/entity.py:463:31: warning[possibly-missing-attribute] Attribute `content` may be missing on object of type `SystemContent | UserContent | AssistantContent | ToolResultContent`
homeassistant/components/cloud/google_config.py:269:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]`
homeassistant/components/cloud/google_config.py:270:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method Self@async_initialize._handle_entity_registry_updated(event: Event[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]) -> None`
homeassistant/components/cloud/google_config.py:275:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventDeviceRegistryUpdatedData_Create | _EventDeviceRegistryUpdatedData_Remove | _EventDeviceRegistryUpdatedData_Update]`
homeassistant/components/cloud/google_config.py:276:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method Self@async_initialize._handle_device_registry_updated(event: Event[_EventDeviceRegistryUpdatedData_Create | _EventDeviceRegistryUpdatedData_Remove | _EventDeviceRegistryUpdatedData_Update]) -> None`
homeassistant/components/cloud/google_config.py:471:28: error[invalid-key] Unknown key "changes" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "changes"
homeassistant/components/cloud/google_config.py:495:76: error[invalid-key] Unknown key "changes" for TypedDict `_EventDeviceRegistryUpdatedData_Create`: Unknown key "changes"
homeassistant/components/cloud/google_config.py:495:76: error[invalid-key] Unknown key "changes" for TypedDict `_EventDeviceRegistryUpdatedData_Remove`: Unknown key "changes"
@ -512,12 +494,6 @@ homeassistant/components/conversation/chat_log.py:587:40: error[invalid-key] Unk
homeassistant/components/conversation/chat_log.py:588:37: error[invalid-key] Unknown key "tool_name" for TypedDict `AssistantContentDeltaDict`: Unknown key "tool_name"
homeassistant/components/conversation/chat_log.py:589:39: error[invalid-key] Unknown key "tool_result" for TypedDict `AssistantContentDeltaDict`: Unknown key "tool_result"
homeassistant/components/conversation/default_agent.py:275:33: error[invalid-key] Unknown key "changes" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "changes"
homeassistant/components/conversation/default_agent.py:290:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventAreaRegistryUpdatedData]`
homeassistant/components/conversation/default_agent.py:294:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventFloorRegistryUpdatedData_Create_Remove_Update | _EventFloorRegistryUpdatedData_Reorder]`
homeassistant/components/conversation/default_agent.py:298:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]`
homeassistant/components/conversation/default_agent.py:300:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `bound method Self@_listen_clear_slot_list._filter_entity_registry_changes(event_data: _EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update) -> bool`
homeassistant/components/conversation/default_agent.py:303:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]`
homeassistant/components/conversation/default_agent.py:305:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `bound method Self@_listen_clear_slot_list._filter_state_changes(event_data: EventStateChangedData) -> bool`
homeassistant/components/counter/__init__.py:219:53: error[invalid-argument-type] Argument to function `max` is incorrect: Argument type `int | None` does not satisfy upper bound `SupportsDunderLT[Any] | SupportsDunderGT[Any]` of type variable `SupportsRichComparisonT`
homeassistant/components/counter/__init__.py:221:53: error[invalid-argument-type] Argument to function `min` is incorrect: Argument type `int | None | Unknown` does not satisfy upper bound `SupportsDunderLT[Any] | SupportsDunderGT[Any]` of type variable `SupportsRichComparisonT`
homeassistant/components/cppm_tracker/device_tracker.py:8:6: error[unresolved-import] Cannot resolve imported module `clearpasspy`
@ -547,7 +523,6 @@ homeassistant/components/danfoss_air/__init__.py:7:6: error[unresolved-import] C
homeassistant/components/danfoss_air/binary_sensor.py:5:6: error[unresolved-import] Cannot resolve imported module `pydanfossair.commands`
homeassistant/components/danfoss_air/sensor.py:7:6: error[unresolved-import] Cannot resolve imported module `pydanfossair.commands`
homeassistant/components/danfoss_air/switch.py:8:6: error[unresolved-import] Cannot resolve imported module `pydanfossair.commands`
homeassistant/components/datadog/__init__.py:124:31: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]`
homeassistant/components/deconz/button.py:104:13: error[unresolved-attribute] Object of type `ButtonEntityDescription` has no attribute `button_fn`
homeassistant/components/deconz/light.py:255:12: error[unsupported-operator] Operator `not in` is not supported between objects of type `Unknown | ColorMode` and `set[ColorMode] | set[str] | None`
homeassistant/components/deconz/light.py:303:16: error[unsupported-operator] Operator `in` is not supported between objects of type `Literal[ColorMode.XY]` and `set[ColorMode] | set[str] | None`
@ -576,8 +551,6 @@ homeassistant/components/denonavr/receiver.py:102:27: error[unresolved-attribute
homeassistant/components/devialet/config_flow.py:51:13: error[invalid-argument-type] Argument to bound method `async_create_entry` is incorrect: Expected `str`, found `str | None`
homeassistant/components/devialet/diagnostics.py:16:12: error[invalid-return-type] Return type does not match returned value: expected `dict[str, Any]`, found `Unknown | None`
homeassistant/components/devialet/media_player.py:112:16: error[invalid-return-type] Return type does not match returned value: expected `bool`, found `Unknown | bool | None`
homeassistant/components/device_tracker/config_entry.py:166:27: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventDeviceRegistryUpdatedData_Create | _EventDeviceRegistryUpdatedData_Remove | _EventDeviceRegistryUpdatedData_Update]`
homeassistant/components/device_tracker/config_entry.py:166:61: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def handle_device_event(ev: Event[_EventDeviceRegistryUpdatedData_Create | _EventDeviceRegistryUpdatedData_Remove | _EventDeviceRegistryUpdatedData_Update]) -> None`
homeassistant/components/device_tracker/const.py:52:42: error[invalid-type-arguments] Too many type arguments to class `SignalType`: expected 0, got 1
homeassistant/components/device_tracker/legacy.py:409:12: error[missing-argument] No argument provided for required parameter `config`
homeassistant/components/device_tracker/legacy.py:409:34: error[invalid-argument-type] Argument is incorrect: Expected `tuple[str, ...]`, found `str`
@ -716,15 +689,8 @@ homeassistant/components/econet/climate.py:68:30: error[invalid-argument-type] A
homeassistant/components/econet/sensor.py:125:16: warning[possibly-missing-attribute] Attribute `energy_type` may be missing on object of type `Unknown | Equipment`
homeassistant/components/econet/switch.py:29:33: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Thermostat`, found `Equipment`
homeassistant/components/econet/water_heater.py:57:31: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `WaterHeater`, found `Equipment`
homeassistant/components/ecovacs/number.py:111:52: error[invalid-type-arguments] Too many type arguments to class `CapabilitySet`: expected 1, got 2
homeassistant/components/ecovacs/number.py:111:52: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[int]`?
homeassistant/components/ecovacs/number.py:121:43: error[invalid-type-arguments] Too many type arguments to class `CapabilitySet`: expected 1, got 2
homeassistant/components/ecovacs/number.py:121:43: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[int]`?
homeassistant/components/ecovacs/select.py:87:46: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `CapabilityMap`, found `CapabilityMap | None`
homeassistant/components/ecovacs/select.py:97:57: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[str]`?
homeassistant/components/ecovacs/select.py:97:64: error[invalid-type-arguments] Too many type arguments to class `CapabilitySetTypes`: expected 2, got 3
homeassistant/components/ecovacs/select.py:108:48: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[str]`?
homeassistant/components/ecovacs/select.py:108:55: error[invalid-type-arguments] Too many type arguments to class `CapabilitySetTypes`: expected 2, got 3
homeassistant/components/ecovacs/select.py:203:40: error[too-many-positional-arguments] Too many positional arguments: expected 0, got 1
homeassistant/components/ecowitt/binary_sensor.py:51:13: error[invalid-argument-type] Argument to function `replace` is incorrect: Argument type `Unknown | BinarySensorEntityDescription` does not satisfy upper bound `DataclassInstance` of type variable `_DataclassT`
homeassistant/components/ecowitt/sensor.py:283:13: error[invalid-argument-type] Argument to function `replace` is incorrect: Argument type `Unknown | SensorEntityDescription` does not satisfy upper bound `DataclassInstance` of type variable `_DataclassT`
homeassistant/components/edimax/switch.py:7:6: error[unresolved-import] Cannot resolve imported module `pyedimax.smartplug`
@ -732,6 +698,22 @@ homeassistant/components/efergy/sensor.py:129:17: error[invalid-argument-type] A
homeassistant/components/egardia/__init__.py:5:6: error[unresolved-import] Cannot resolve imported module `pythonegardia`
homeassistant/components/egardia/alarm_control_panel.py:104:44: warning[possibly-missing-attribute] Attribute `items` may be missing on object of type `Unknown | None`
homeassistant/components/ekeybionyx/config_flow.py:110:47: error[invalid-assignment] Object of type `list[dict[Unknown | str, Unknown | str] | Unknown]` is not assignable to `list[SelectOptionDict]`
homeassistant/components/elevenlabs/tts.py:289:25: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `Unknown | str | VoiceSettings`
homeassistant/components/elevenlabs/tts.py:289:25: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `Unknown | str | VoiceSettings`
homeassistant/components/elevenlabs/tts.py:289:25: error[invalid-argument-type] Argument is incorrect: Expected `bool | None`, found `Unknown | str | VoiceSettings`
homeassistant/components/elevenlabs/tts.py:289:25: error[invalid-argument-type] Argument is incorrect: Expected `int | None`, found `Unknown | str | VoiceSettings`
homeassistant/components/elevenlabs/tts.py:289:25: error[invalid-argument-type] Argument is incorrect: Expected `str | None`, found `Unknown | str | VoiceSettings`
homeassistant/components/elevenlabs/tts.py:289:25: error[invalid-argument-type] Argument is incorrect: Expected `str | None`, found `Unknown | str | VoiceSettings`
homeassistant/components/elevenlabs/tts.py:289:25: error[invalid-argument-type] Argument is incorrect: Expected `VoiceSettings | None`, found `Unknown | str | VoiceSettings`
homeassistant/components/elevenlabs/tts.py:289:25: error[invalid-argument-type] Argument is incorrect: Expected `Sequence[PronunciationDictionaryVersionLocator] | None`, found `Unknown | str | VoiceSettings`
homeassistant/components/elevenlabs/tts.py:289:25: error[invalid-argument-type] Argument is incorrect: Expected `int | None`, found `Unknown | str | VoiceSettings`
homeassistant/components/elevenlabs/tts.py:289:25: error[invalid-argument-type] Argument is incorrect: Expected `str | None`, found `Unknown | str | VoiceSettings`
homeassistant/components/elevenlabs/tts.py:289:25: error[invalid-argument-type] Argument is incorrect: Expected `str | None`, found `Unknown | str | VoiceSettings`
homeassistant/components/elevenlabs/tts.py:289:25: error[invalid-argument-type] Argument is incorrect: Expected `Sequence[str] | None`, found `Unknown | str | VoiceSettings`
homeassistant/components/elevenlabs/tts.py:289:25: error[invalid-argument-type] Argument is incorrect: Expected `Sequence[str] | None`, found `Unknown | str | VoiceSettings`
homeassistant/components/elevenlabs/tts.py:289:25: error[invalid-argument-type] Argument is incorrect: Expected `bool | None`, found `Unknown | str | VoiceSettings`
homeassistant/components/elevenlabs/tts.py:289:25: error[invalid-argument-type] Argument is incorrect: Expected `bool | None`, found `Unknown | str | VoiceSettings`
homeassistant/components/elevenlabs/tts.py:289:25: error[invalid-argument-type] Argument is incorrect: Expected `RequestOptions | None`, found `Unknown | str | VoiceSettings`
homeassistant/components/eliqonline/sensor.py:8:8: error[unresolved-import] Cannot resolve imported module `eliqonline`
homeassistant/components/elkm1/config_flow.py:203:9: error[invalid-method-override] Invalid override of method `is_matching`: Definition is incompatible with `ConfigFlow.is_matching`
homeassistant/components/elmax/__init__.py:50:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `SSLContext`, found `None | SSLContext`
@ -796,6 +778,7 @@ homeassistant/components/eufy/light.py:102:16: error[unsupported-operator] Opera
homeassistant/components/eufy/light.py:149:17: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method
homeassistant/components/eufy/light.py:149:30: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method
homeassistant/components/eufy/switch.py:7:8: error[unresolved-import] Cannot resolve imported module `lakeside`
homeassistant/components/evohome/entity.py:171:21: error[unsupported-operator] Operator `<` is not supported between objects of type `(Unknown & ~None) | datetime | int | float | str` and `datetime`
homeassistant/components/evohome/storage.py:116:13: error[unsupported-operator] Operator `|=` is unsupported between objects of type `dict[str, object]` and `SessionIdEntryT`
homeassistant/components/ezviz/alarm_control_panel.py:104:17: error[invalid-argument-type] Argument to bound method `api_set_defence_mode` is incorrect: Expected `DefenseModeType`, found `Literal[1]`
homeassistant/components/ezviz/alarm_control_panel.py:115:17: error[invalid-argument-type] Argument to bound method `api_set_defence_mode` is incorrect: Expected `DefenseModeType`, found `Literal[2]`
@ -1010,9 +993,6 @@ homeassistant/components/google_assistant/report_state.py:107:47: warning[possib
homeassistant/components/google_assistant/report_state.py:111:17: warning[possibly-missing-attribute] Attribute `entity_id` may be missing on object of type `Unknown | State | None`
homeassistant/components/google_assistant/report_state.py:164:54: error[invalid-argument-type] Argument to function `create_checker` is incorrect: Expected `ExtraCheckTypeFunc | None`, found `def extra_significant_check(hass: HomeAssistant, old_state: str, old_attrs: dict[Unknown, Unknown], old_extra_arg: dict[Unknown, Unknown], new_state: str, new_attrs: dict[Unknown, Unknown], new_extra_arg: dict[Unknown, Unknown]) -> Unknown`
homeassistant/components/google_assistant/report_state.py:178:17: error[invalid-argument-type] Argument to bound method `async_is_significant_change` is incorrect: Expected `State`, found `Unknown | State | None`
homeassistant/components/google_assistant/report_state.py:190:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]`
homeassistant/components/google_assistant/report_state.py:191:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _async_entity_state_listener(event: Event[EventStateChangedData]) -> CoroutineType[Any, Any, None]`
homeassistant/components/google_assistant/report_state.py:192:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _async_entity_state_filter(data: EventStateChangedData) -> bool`
homeassistant/components/google_assistant/trait.py:381:9: error[invalid-method-override] Invalid override of method `supported`: Definition is incompatible with `_Trait.supported`
homeassistant/components/google_assistant/trait.py:420:9: error[invalid-method-override] Invalid override of method `supported`: Definition is incompatible with `_Trait.supported`
homeassistant/components/google_assistant/trait.py:478:9: error[invalid-method-override] Invalid override of method `supported`: Definition is incompatible with `_Trait.supported`
@ -1048,8 +1028,6 @@ homeassistant/components/google_maps/device_tracker.py:8:6: error[unresolved-imp
homeassistant/components/google_maps/device_tracker.py:9:6: error[unresolved-import] Cannot resolve imported module `locationsharinglib.locationsharinglibexceptions`
homeassistant/components/google_maps/device_tracker.py:115:16: error[unsupported-operator] Operator `<` is not supported between objects of type `datetime` and `str | datetime`
homeassistant/components/google_maps/device_tracker.py:130:13: error[invalid-assignment] Invalid subscript assignment with key of type `str` and value of type `datetime` on object of type `dict[str, str]`
homeassistant/components/google_pubsub/__init__.py:77:21: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]`
homeassistant/components/google_pubsub/__init__.py:77:42: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def send_to_pubsub(event: Event[EventStateChangedData]) -> Unknown`
homeassistant/components/google_tasks/api.py:63:28: error[unresolved-attribute] Object of type `Resource` has no attribute `tasklists`
homeassistant/components/google_tasks/api.py:70:28: error[unresolved-attribute] Object of type `Resource` has no attribute `tasks`
homeassistant/components/google_tasks/api.py:86:28: error[unresolved-attribute] Object of type `Resource` has no attribute `tasks`
@ -1103,14 +1081,6 @@ homeassistant/components/harmony/data.py:113:68: error[invalid-argument-type] Ar
homeassistant/components/harmony/data.py:113:68: error[invalid-argument-type] Argument is incorrect: Expected `Future[Unknown] | Event | ((object, Any | None, /) -> Any) | None`, found `Unknown | (bound method Self@connect._config_updated(_: dict[Unknown, Unknown] | None = None) -> None) | (bound method Self@connect._connected(_: str | None = None) -> None) | ... omitted 3 union elements`
homeassistant/components/harmony/data.py:113:68: error[invalid-argument-type] Argument is incorrect: Expected `Future[Unknown] | Event | ((object, Any | None, /) -> Any) | None`, found `Unknown | (bound method Self@connect._config_updated(_: dict[Unknown, Unknown] | None = None) -> None) | (bound method Self@connect._connected(_: str | None = None) -> None) | ... omitted 3 union elements`
homeassistant/components/harmony/data.py:234:21: error[invalid-argument-type] Argument is incorrect: Expected `int`, found `str`
homeassistant/components/harmony/subscriber.py:13:32: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `tuple[()]`?
homeassistant/components/harmony/subscriber.py:13:36: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/components/harmony/subscriber.py:14:33: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[tuple[Unknown, ...]]`?
homeassistant/components/harmony/subscriber.py:14:42: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/components/hassio/addon_manager.py:38:36: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/hassio/addon_manager.py:38:78: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/hassio/addon_manager.py:44:45: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/hassio/addon_manager.py:45:46: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/hassio/repairs.py:226:18: warning[possibly-missing-attribute] Attribute `key` may be missing on object of type `(SupervisorIssues & ~AlwaysTruthy & ~AlwaysFalsy) | (Issue & ~AlwaysFalsy)`
homeassistant/components/hassio/repairs.py:228:18: warning[possibly-missing-attribute] Attribute `key` may be missing on object of type `(SupervisorIssues & ~AlwaysTruthy & ~AlwaysFalsy) | (Issue & ~AlwaysFalsy)`
homeassistant/components/hassio/repairs.py:230:18: warning[possibly-missing-attribute] Attribute `key` may be missing on object of type `(SupervisorIssues & ~AlwaysTruthy & ~AlwaysFalsy) | (Issue & ~AlwaysFalsy)`
@ -1118,10 +1088,6 @@ homeassistant/components/haveibeenpwned/sensor.py:94:17: error[invalid-argument-
homeassistant/components/hddtemp/sensor.py:68:23: error[no-matching-overload] No overload of function `iter` matches arguments
homeassistant/components/hdmi_cec/__init__.py:258:49: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `list[int]`, found `Unknown | Literal[""]`
homeassistant/components/heatmiser/climate.py:8:6: error[unresolved-import] Cannot resolve imported module `heatmiserv3`
homeassistant/components/heos/media_player.py:144:30: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/heos/media_player.py:144:56: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/heos/media_player.py:147:39: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/heos/media_player.py:147:67: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/here_travel_time/coordinator.py:226:21: error[invalid-argument-type] Argument is incorrect: Expected `int | float`, found `str`
homeassistant/components/here_travel_time/coordinator.py:226:48: error[invalid-argument-type] Argument is incorrect: Expected `int | float`, found `str`
homeassistant/components/here_travel_time/coordinator.py:229:21: error[invalid-argument-type] Argument is incorrect: Expected `int | float`, found `str`
@ -1385,16 +1351,6 @@ homeassistant/components/horizon/media_player.py:10:6: error[unresolved-import]
homeassistant/components/hp_ilo/sensor.py:8:8: error[unresolved-import] Cannot resolve imported module `hpilo`
homeassistant/components/html5/notify.py:481:13: warning[possibly-missing-attribute] Attribute `get` may be missing on object of type `Unknown | str | dict[Unknown, Unknown]`
homeassistant/components/html5/notify.py:484:13: error[invalid-assignment] Cannot assign to a subscript on an object of type `str`
homeassistant/components/http/decorators.py:33:41: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/http/decorators.py:34:40: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/http/decorators.py:44:47: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/http/decorators.py:45:41: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/http/decorators.py:53:47: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/http/decorators.py:59:45: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/http/decorators.py:60:44: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/http/decorators.py:62:42: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/http/decorators.py:67:50: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/http/decorators.py:68:45: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/huawei_lte/sensor.py:903:69: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `Unknown | None`
homeassistant/components/hue/__init__.py:40:37: warning[possibly-missing-attribute] Attribute `bridge_id` may be missing on object of type `Unknown | Config | None | ConfigController`
homeassistant/components/hue/__init__.py:76:54: warning[possibly-missing-attribute] Attribute `mac_address` may be missing on object of type `Unknown | Config | None | ConfigController`
@ -1734,7 +1690,7 @@ homeassistant/components/imap/coordinator.py:353:31: warning[possibly-missing-at
homeassistant/components/imap/coordinator.py:531:46: warning[possibly-missing-attribute] Attribute `idle_start` may be missing on object of type `Unknown | IMAP4_SSL | None`
homeassistant/components/imap/coordinator.py:532:23: warning[possibly-missing-attribute] Attribute `wait_server_push` may be missing on object of type `Unknown | IMAP4_SSL | None`
homeassistant/components/imap/coordinator.py:533:17: warning[possibly-missing-attribute] Attribute `idle_done` may be missing on object of type `Unknown | IMAP4_SSL | None`
homeassistant/components/input_datetime/__init__.py:295:34: warning[possibly-missing-attribute] Attribute `replace` may be missing on object of type `datetime | None | Unknown`
homeassistant/components/input_datetime/__init__.py:295:34: warning[possibly-missing-attribute] Attribute `replace` may be missing on object of type `datetime | None`
homeassistant/components/input_datetime/__init__.py:404:20: warning[possibly-missing-attribute] Attribute `date` may be missing on object of type `Unknown | None | datetime`
homeassistant/components/input_datetime/__init__.py:407:20: warning[possibly-missing-attribute] Attribute `time` may be missing on object of type `Unknown | None | datetime`
homeassistant/components/input_number/__init__.py:316:40: error[unsupported-operator] Operator `+` is unsupported between objects of type `int | float | None` and `int`
@ -1944,10 +1900,6 @@ homeassistant/components/isy994/switch.py:173:9: error[invalid-method-override]
homeassistant/components/itach/remote.py:9:8: error[unresolved-import] Cannot resolve imported module `pyitachip2ir`
homeassistant/components/itunes/media_player.py:279:17: warning[possibly-missing-attribute] Attribute `update_state` may be missing on object of type `Unknown | None`
homeassistant/components/itunes/media_player.py:298:16: error[unsupported-operator] Operator `/` is unsupported between objects of type `Unknown | None` and `float`
homeassistant/components/izone/climate.py:122:40: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/izone/climate.py:122:70: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/izone/climate.py:123:44: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/izone/climate.py:123:76: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/izone/climate.py:367:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `Unknown | int | float | None`
homeassistant/components/izone/climate.py:469:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, Unknown & ~AlwaysFalsy, int]]`
homeassistant/components/izone/climate.py:539:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `Unknown | int | float | None`
@ -2133,6 +2085,7 @@ homeassistant/components/lifx/coordinator.py:202:27: error[non-subscriptable] Ca
homeassistant/components/lifx/coordinator.py:203:23: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method
homeassistant/components/lifx/coordinator.py:209:48: error[invalid-argument-type] Argument to function `__new__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | None | list[Unknown | None]`
homeassistant/components/lifx/coordinator.py:210:17: error[invalid-assignment] Cannot assign to a subscript on an object of type `int`
homeassistant/components/lifx/coordinator.py:210:17: error[invalid-assignment] Cannot assign to a subscript on an object of type `None`
homeassistant/components/lifx/coordinator.py:294:27: error[invalid-argument-type] Argument is incorrect: Expected `Message`, found `Light`
homeassistant/components/lifx/coordinator.py:294:33: error[invalid-argument-type] Argument is incorrect: Expected `dict[str, Any] | None`, found `Message`
homeassistant/components/lifx/coordinator.py:385:47: error[unresolved-attribute] Object of type `Message` has no attribute `signal`
@ -2207,9 +2160,6 @@ homeassistant/components/livisi/climate.py:93:13: error[invalid-argument-type] A
homeassistant/components/livisi/coordinator.py:98:36: error[invalid-assignment] Object of type `Unknown | dict[str, Any] | None` is not assignable to `dict[str, Any]`
homeassistant/components/livisi/coordinator.py:107:42: error[invalid-assignment] Object of type `Unknown | dict[str, Any]` is not assignable to `list[dict[str, Any]]`
homeassistant/components/locative/device_tracker.py:58:9: error[call-non-callable] Object of type `None` is not callable
homeassistant/components/logbook/helpers.py:220:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]`
homeassistant/components/logbook/helpers.py:221:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _forward_state_events_filtered(event: Event[EventStateChangedData]) -> None`
homeassistant/components/logentries/__init__.py:54:21: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]`
homeassistant/components/london_underground/config_flow.py:36:9: error[invalid-method-override] Invalid override of method `async_get_options_flow`: Definition is incompatible with `ConfigFlow.async_get_options_flow`
homeassistant/components/lookin/__init__.py:81:78: error[invalid-argument-type] Argument to function `start_lookin_udp` is incorrect: Expected `str`, found `None`
homeassistant/components/lookin/__init__.py:82:20: error[invalid-return-type] Return type does not match returned value: expected `LookinUDPSubscriptions`, found `LookinUDPSubscriptions | None`
@ -2510,8 +2460,6 @@ homeassistant/components/mpd/media_player.py:515:19: warning[possibly-missing-at
homeassistant/components/mpd/media_player.py:520:19: warning[possibly-missing-attribute] Attribute `play` may be missing on object of type `Unknown | MPDClient`
homeassistant/components/mpd/media_player.py:526:19: warning[possibly-missing-attribute] Attribute `clear` may be missing on object of type `Unknown | MPDClient`
homeassistant/components/mpd/media_player.py:531:19: warning[possibly-missing-attribute] Attribute `seekcur` may be missing on object of type `Unknown | MPDClient`
homeassistant/components/mqtt/client.py:307:18: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[ReceiveMessage]`?
homeassistant/components/mqtt/client.py:307:36: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/components/mqtt/client.py:879:30: error[unresolved-attribute] Object of type `object` has no attribute `__name__`
homeassistant/components/mqtt/client.py:881:30: error[unresolved-attribute] Object of type `((ReceiveMessage, /) -> Coroutine[Any, Any, None] | None) & ~Top[partial[Unknown]]` has no attribute `__name__`
homeassistant/components/mqtt/config_flow.py:3762:65: error[no-matching-overload] No overload of bound method `__init__` matches arguments
@ -2536,9 +2484,6 @@ homeassistant/components/mqtt/subscription.py:169:28: error[invalid-assignment]
homeassistant/components/mqtt/valve.py:335:54: error[invalid-argument-type] Argument to bound method `_process_position_valve_update` is incorrect: Expected `str`, found `Unknown | str | bytes | ... omitted 6 union elements`
homeassistant/components/mqtt/valve.py:335:72: error[invalid-argument-type] Argument to bound method `_process_position_valve_update` is incorrect: Expected `str`, found `Unknown | str | bytes | ... omitted 6 union elements`
homeassistant/components/mqtt/valve.py:337:52: error[invalid-argument-type] Argument to bound method `_process_binary_valve_update` is incorrect: Expected `str`, found `Unknown | str | bytes | ... omitted 6 union elements`
homeassistant/components/mqtt_statestream/__init__.py:104:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]`
homeassistant/components/mqtt_statestream/__init__.py:104:34: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _state_publisher(evt: Event[EventStateChangedData]) -> CoroutineType[Any, Any, None]`
homeassistant/components/mqtt_statestream/__init__.py:104:52: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _event_filter(event_data: EventStateChangedData) -> bool`
homeassistant/components/msteams/notify.py:7:8: error[unresolved-import] Cannot resolve imported module `pymsteams`
homeassistant/components/music_assistant/media_player.py:615:39: warning[possibly-missing-attribute] Attribute `uri` may be missing on object of type `QueueItem | None`
homeassistant/components/music_assistant/media_player.py:616:37: warning[possibly-missing-attribute] Attribute `duration` may be missing on object of type `QueueItem | None`
@ -2666,6 +2611,8 @@ homeassistant/components/ondilo_ico/coordinator.py:181:55: error[invalid-argumen
homeassistant/components/onedrive/backup.py:92:17: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@handle_backup_errors]` has no attribute `__name__`
homeassistant/components/onedrive/backup.py:100:17: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@handle_backup_errors]` has no attribute `__name__`
homeassistant/components/onewire/onewirehub.py:47:42: error[invalid-type-arguments] Too many type arguments to class `SignalType`: expected 0, got 2
homeassistant/components/onkyo/receiver.py:85:36: error[invalid-argument-type] Argument is incorrect: Expected `InfoT@connect`, found `ReceiverInfo`
homeassistant/components/onkyo/receiver.py:93:44: warning[possibly-missing-attribute] Attribute `read` may be missing on object of type `Receiver[ReceiverInfo] | None`
homeassistant/components/onvif/camera.py:182:17: error[invalid-argument-type] Argument to function `async_aiohttp_proxy_stream` is incorrect: Expected `StreamReader`, found `StreamReader`
homeassistant/components/onvif/device.py:189:20: error[call-non-callable] Object of type `None` is not callable
homeassistant/components/onvif/device.py:480:15: error[call-non-callable] Object of type `None` is not callable
@ -2769,11 +2716,7 @@ homeassistant/components/openai_conversation/entity.py:603:39: error[invalid-ass
homeassistant/components/openai_conversation/entity.py:603:39: error[invalid-assignment] Invalid assignment to key "content" with declared type `Iterable[Content]` on TypedDict `ResponseReasoningItemParam`: value of type `list[Unknown | dict[Unknown | str, Unknown | str]]`
homeassistant/components/openai_conversation/entity.py:603:39: error[invalid-assignment] Invalid assignment to key "content" with declared type `str | list[ResponseInputTextParam | ResponseInputImageParam | ResponseInputFileParam]` on TypedDict `EasyInputMessageParam`: value of type `list[Unknown | dict[Unknown | str, Unknown | str]]`
homeassistant/components/openevse/sensor.py:7:8: error[unresolved-import] Cannot resolve imported module `openevsewifi`
homeassistant/components/openhome/media_player.py:71:38: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/openhome/media_player.py:71:82: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/openhome/media_player.py:76:47: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/openhome/media_player.py:77:48: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/openhome/media_player.py:88:55: error[unresolved-attribute] Object of type `(...) -> Awaitable[Unknown]` has no attribute `__name__`
homeassistant/components/openhome/media_player.py:88:55: error[unresolved-attribute] Object of type `(...) -> Awaitable[_R@catch_request_errors]` has no attribute `__name__`
homeassistant/components/opensensemap/air_quality.py:8:6: error[unresolved-import] Cannot resolve imported module `opensensemap_api`
homeassistant/components/opensensemap/air_quality.py:9:6: error[unresolved-import] Cannot resolve imported module `opensensemap_api.exceptions`
homeassistant/components/openweathermap/coordinator.py:190:25: error[invalid-argument-type] Invalid argument to key "temperature" with declared type `None` on TypedDict `Forecast`: value of type `Decimal`
@ -2830,9 +2773,6 @@ homeassistant/components/peco/__init__.py:73:9: error[invalid-argument-type] Arg
homeassistant/components/peco/__init__.py:103:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(() -> Awaitable[dict[str, Any]]) | None`, found `def async_update_meter_data() -> CoroutineType[Any, Any, bool]`
homeassistant/components/pencom/switch.py:8:6: error[unresolved-import] Cannot resolve imported module `pencompy.pencompy`
homeassistant/components/persistent_notification/__init__.py:55:5: error[invalid-type-arguments] Too many type arguments to class `SignalType`: expected 0, got 2
homeassistant/components/person/__init__.py:238:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]`
homeassistant/components/person/__init__.py:239:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method Self@async_load._entity_registry_updated(event: Event[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]) -> CoroutineType[Any, Any, None]`
homeassistant/components/person/__init__.py:240:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `bound method Self@async_load._entity_registry_filter(event_data: _EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update) -> bool`
homeassistant/components/pglab/__init__.py:48:38: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `str | bytes | bytearray`
homeassistant/components/pglab/__init__.py:69:36: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(str, str, int | None, bool | None, /) -> Coroutine[Any, Any, dict[Unknown, Unknown]]`, found `def mqtt_publish(topic: str, payload: str, qos: int, retain: bool) -> CoroutineType[Any, Any, None]`
homeassistant/components/pglab/__init__.py:69:66: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(dict[str, Any], /) -> Coroutine[Any, Any, dict[Unknown, Unknown]]`, found `def mqtt_unsubscribe(sub_state: dict[str, Any]) -> CoroutineType[Any, Any, None]`
@ -2984,10 +2924,6 @@ homeassistant/components/powerwall/__init__.py:236:43: error[invalid-assignment]
homeassistant/components/progettihwsw/binary_sensor.py:69:16: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, Any].__getitem__(key: str, /) -> Any` cannot be called with key of type `Unknown | int` on object of type `dict[str, Any]`
homeassistant/components/progettihwsw/switch.py:85:16: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[str, Any].__getitem__(key: str, /) -> Any` cannot be called with key of type `Unknown | int` on object of type `dict[str, Any]`
homeassistant/components/proliphix/climate.py:7:8: error[unresolved-import] Cannot resolve imported module `proliphix`
homeassistant/components/prometheus/__init__.py:164:21: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]`
homeassistant/components/prometheus/__init__.py:164:42: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method PrometheusMetrics.handle_state_changed_event(event: Event[EventStateChangedData]) -> None`
homeassistant/components/prometheus/__init__.py:166:9: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]`
homeassistant/components/prometheus/__init__.py:167:9: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method PrometheusMetrics.handle_entity_registry_updated(event: Event[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]) -> None`
homeassistant/components/prometheus/__init__.py:303:34: error[invalid-key] Unknown key "changes" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "changes"
homeassistant/components/proximity/coordinator.py:125:63: error[invalid-key] Unknown key "changes" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "changes"
homeassistant/components/proximity/coordinator.py:126:42: error[invalid-key] Unknown key "old_entity_id" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "old_entity_id"
@ -3027,10 +2963,33 @@ homeassistant/components/raspyrfm/switch.py:12:6: error[unresolved-import] Canno
homeassistant/components/raspyrfm/switch.py:15:6: error[unresolved-import] Cannot resolve imported module `raspyrfm_client.device_implementations.manufacturer_constants`
homeassistant/components/recollect_waste/__init__.py:60:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(() -> Awaitable[dict[str, Any]]) | None`, found `def async_get_pickup_events() -> CoroutineType[Any, Any, list[PickupEvent]]`
homeassistant/components/recorder/core.py:284:13: error[call-non-callable] Object of type `object` is not callable
homeassistant/components/recorder/db_schema.py:646:13: error[unknown-argument] Argument `metadata_id` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:647:13: error[unknown-argument] Argument `created` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:648:13: error[unknown-argument] Argument `created_ts` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:649:13: error[unknown-argument] Argument `start` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:650:13: error[unknown-argument] Argument `start_ts` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:651:13: error[unknown-argument] Argument `mean` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:652:13: error[unknown-argument] Argument `mean_weight` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:653:13: error[unknown-argument] Argument `min` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:654:13: error[unknown-argument] Argument `max` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:655:13: error[unknown-argument] Argument `last_reset` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:656:13: error[unknown-argument] Argument `last_reset_ts` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:657:13: error[unknown-argument] Argument `state` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:658:13: error[unknown-argument] Argument `sum` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:670:13: error[unknown-argument] Argument `metadata_id` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:671:13: error[unknown-argument] Argument `created` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:672:13: error[unknown-argument] Argument `created_ts` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:673:13: error[unknown-argument] Argument `start` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:674:13: error[unknown-argument] Argument `start_ts` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:675:13: error[unknown-argument] Argument `mean` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:676:13: error[unknown-argument] Argument `mean_weight` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:677:13: error[unknown-argument] Argument `min` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:678:13: error[unknown-argument] Argument `max` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:679:13: error[unknown-argument] Argument `last_reset` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:680:13: error[unknown-argument] Argument `last_reset_ts` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:681:13: error[unknown-argument] Argument `state` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/db_schema.py:682:13: error[unknown-argument] Argument `sum` does not match any known parameter of bound method `__init__`
homeassistant/components/recorder/entity_registry.py:29:36: error[invalid-key] Unknown key "old_entity_id" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "old_entity_id"
homeassistant/components/recorder/entity_registry.py:52:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]`
homeassistant/components/recorder/entity_registry.py:53:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _async_entity_id_changed(event: Event[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]) -> None`
homeassistant/components/recorder/entity_registry.py:54:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def entity_registry_changed_filter(event_data: _EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update) -> bool`
homeassistant/components/recorder/executor.py:55:19: error[invalid-argument-type] Argument to bound method `put` is incorrect: Expected `_WorkItem[Any]`, found `None`
homeassistant/components/recorder/history/__init__.py:911:53: error[unresolved-reference] Name `prev_state` used when not defined
homeassistant/components/recorder/history/__init__.py:927:49: error[unresolved-reference] Name `prev_state` used when not defined
@ -3043,26 +3002,6 @@ homeassistant/components/recorder/statistics.py:2440:12: error[invalid-return-ty
homeassistant/components/recorder/statistics.py:2458:12: error[invalid-return-type] Return type does not match returned value: expected `list[StatisticsRow]`, found `list[dict[Unknown | str, Unknown | None | int | float] | Unknown]`
homeassistant/components/recorder/util.py:386:10: error[unresolved-import] Cannot resolve imported module `MySQLdb.constants`
homeassistant/components/recorder/util.py:387:10: error[unresolved-import] Cannot resolve imported module `MySQLdb.converters`
homeassistant/components/recorder/util.py:587:30: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/recorder/util.py:587:52: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/recorder/util.py:593:38: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/recorder/util.py:593:62: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/recorder/util.py:601:37: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/recorder/util.py:601:66: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/recorder/util.py:607:45: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/recorder/util.py:607:76: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/recorder/util.py:614:30: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/recorder/util.py:615:26: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/recorder/util.py:643:30: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/recorder/util.py:643:50: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/recorder/util.py:653:28: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/recorder/util.py:654:24: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/recorder/util.py:664:37: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/recorder/util.py:664:64: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/recorder/util.py:674:35: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/recorder/util.py:675:31: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/recorder/util.py:684:30: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/recorder/util.py:688:26: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/recswitch/switch.py:8:6: error[unresolved-import] Cannot resolve imported module `pyrecswitch`
homeassistant/components/reddit/sensor.py:88:12: warning[possibly-missing-attribute] Submodule `exceptions` may not be available as an attribute on module `praw`
homeassistant/components/reddit/sensor.py:156:16: warning[possibly-missing-attribute] Submodule `exceptions` may not be available as an attribute on module `praw`
@ -3089,13 +3028,12 @@ homeassistant/components/repetier/sensor.py:130:16: error[no-matching-overload]
homeassistant/components/repetier/sensor.py:151:16: error[no-matching-overload] No overload of function `round` matches arguments
homeassistant/components/rest/data.py:56:13: error[invalid-assignment] Object of type `DigestAuthMiddleware | BasicAuth | tuple[str, str] | None` is not assignable to attribute `_auth` of type `BasicAuth | DigestAuthMiddleware | None`
homeassistant/components/rflink/__init__.py:278:43: error[invalid-argument-type] Argument to bound method `set_rflink_protocol` is incorrect: Expected `ProtocolBase | None`, found `Protocol`
homeassistant/components/rflink/entity.py:219:22: error[unresolved-attribute] Object of type `ProtocolBase | None` has no attribute `send_command_ack`
homeassistant/components/rflink/entity.py:286:19: error[unresolved-attribute] Object of type `ProtocolBase | None` has no attribute `send_command_ack`
homeassistant/components/rflink/entity.py:292:13: error[unresolved-attribute] Object of type `ProtocolBase | None` has no attribute `send_command`
homeassistant/components/rfxtrx/__init__.py:192:38: error[unresolved-attribute] Object of type `RFXtrxEvent & ~ConnectionLost` has no attribute `data`
homeassistant/components/rfxtrx/__init__.py:234:41: error[unresolved-attribute] Object of type `RFXtrxEvent` has no attribute `data`
homeassistant/components/rfxtrx/__init__.py:239:39: error[unresolved-attribute] Object of type `RFXtrxEvent` has no attribute `data`
homeassistant/components/rfxtrx/__init__.py:276:31: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventDeviceRegistryUpdatedData_Create | _EventDeviceRegistryUpdatedData_Remove | _EventDeviceRegistryUpdatedData_Update]`
homeassistant/components/rfxtrx/__init__.py:276:65: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _updated_device(event: Event[_EventDeviceRegistryUpdatedData_Create | _EventDeviceRegistryUpdatedData_Remove | _EventDeviceRegistryUpdatedData_Update]) -> None`
homeassistant/components/rfxtrx/cover.py:52:17: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `RFXtrxEvent`, found `RFXtrxEvent | None`
homeassistant/components/rfxtrx/cover.py:70:9: error[invalid-parameter-default] Default value of type `None` is not assignable to annotated parameter type `RFXtrxEvent`
homeassistant/components/rfxtrx/cover.py:104:36: warning[possibly-missing-attribute] Attribute `send_up05sec` may be missing on object of type `RollerTrolDevice | RfyDevice | LightingDevice`
@ -3136,10 +3074,6 @@ homeassistant/components/roborock/vacuum.py:201:16: error[invalid-return-type] R
homeassistant/components/rocketchat/notify.py:8:6: error[unresolved-import] Cannot resolve imported module `rocketchat_API.APIExceptions.RocketExceptions`
homeassistant/components/rocketchat/notify.py:12:6: error[unresolved-import] Cannot resolve imported module `rocketchat_API.rocketchat`
homeassistant/components/roku/browse_media.py:252:9: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `bool`, found `Literal[False, ""] | Unknown`
homeassistant/components/roku/helpers.py:31:40: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/roku/helpers.py:31:76: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/roku/helpers.py:35:39: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/roku/helpers.py:36:40: error[invalid-type-arguments] Too many type arguments: expected 1, got 2
homeassistant/components/roomba/vacuum.py:200:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int]`, found `tuple[Unknown | int | float, Unknown]`
homeassistant/components/roon/media_browser.py:94:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | None`
homeassistant/components/roon/media_browser.py:94:24: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | None`
@ -3350,16 +3284,8 @@ homeassistant/components/sonos/__init__.py:117:5: error[invalid-assignment] Obje
homeassistant/components/sonos/__init__.py:118:5: error[unresolved-attribute] Unresolved attribute `EVENT_CACHE_TIMEOUT` on type `<module 'soco.zonegroupstate'>`.
homeassistant/components/sonos/__init__.py:374:21: error[invalid-assignment] Invalid subscript assignment with key of type `Unknown` and value of type `SonosAlarms | SonosFavorites` on object of type `dict[str, SonosAlarms]`
homeassistant/components/sonos/__init__.py:374:21: error[invalid-assignment] Invalid subscript assignment with key of type `Unknown` and value of type `SonosAlarms | SonosFavorites` on object of type `dict[str, SonosFavorites]`
homeassistant/components/sonos/helpers.py:46:34: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/sonos/helpers.py:46:58: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/sonos/helpers.py:52:34: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/sonos/helpers.py:52:64: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/sonos/helpers.py:57:34: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/sonos/helpers.py:57:64: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/sonos/helpers.py:60:44: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/sonos/helpers.py:60:76: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/components/sonos/helpers.py:70:28: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__qualname__`
homeassistant/components/sonos/helpers.py:87:17: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__qualname__`
homeassistant/components/sonos/helpers.py:70:28: error[unresolved-attribute] Object of type `(...) -> _R@soco_error` has no attribute `__qualname__`
homeassistant/components/sonos/helpers.py:87:17: error[unresolved-attribute] Object of type `(...) -> _R@soco_error` has no attribute `__qualname__`
homeassistant/components/sonos/media_browser.py:259:21: error[call-non-callable] Object of type `None` is not callable
homeassistant/components/sonos/media_browser.py:285:31: error[invalid-argument-type] Argument to function `can_expand` is incorrect: Expected `DidlObject`, found `str`
homeassistant/components/sonos/media_browser.py:304:21: error[call-non-callable] Object of type `None` is not callable
@ -3386,7 +3312,6 @@ homeassistant/components/soundtouch/media_player.py:210:16: warning[possibly-mis
homeassistant/components/soundtouch/media_player.py:215:16: warning[possibly-missing-attribute] Attribute `track` may be missing on object of type `Unknown | None`
homeassistant/components/soundtouch/media_player.py:220:16: warning[possibly-missing-attribute] Attribute `album` may be missing on object of type `Unknown | None`
homeassistant/components/splunk/__init__.py:9:6: error[unresolved-import] Cannot resolve imported module `hass_splunk`
homeassistant/components/splunk/__init__.py:127:27: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]`
homeassistant/components/spotify/browse_media.py:331:21: error[invalid-assignment] Object of type `list[dict[Unknown | str, Unknown | str | None] | Unknown]` is not assignable to `list[ItemPayload]`
homeassistant/components/squeezebox/__init__.py:207:42: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | None`
homeassistant/components/squeezebox/browse_media.py:162:43: error[invalid-argument-type] Argument to bound method `async_query` is incorrect: Expected `str`, found `Unknown | str | int`
@ -3400,14 +3325,11 @@ homeassistant/components/squeezebox/media_player.py:581:50: error[invalid-argume
homeassistant/components/squeezebox/media_player.py:889:17: error[invalid-argument-type] Argument to function `safe_library_call` is incorrect: Expected `(...) -> Awaitable[Any]`, found `Unknown | (bound method Player.generate_image_url_from_track_id(track_id: int) -> str)`
homeassistant/components/squeezebox/switch.py:150:16: warning[redundant-cast] Value is already of type `bool`
homeassistant/components/ssdp/common.py:18:42: warning[possibly-missing-attribute] Attribute `scope_id` may be missing on object of type `IPv4Address | IPv6Address`
homeassistant/components/ssdp/scanner.py:64:5: error[invalid-type-form] List literals are not allowed in this context in a type expression
homeassistant/components/ssdp/scanner.py:64:37: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/components/ssdp/scanner.py:263:24: warning[possibly-missing-attribute] Attribute `scope_id` may be missing on object of type `IPv4Address | IPv6Address`
homeassistant/components/ssdp/scanner.py:268:25: warning[possibly-missing-attribute] Attribute `scope_id` may be missing on object of type `IPv4Address | IPv6Address`
homeassistant/components/ssdp/server.py:174:28: warning[possibly-missing-attribute] Attribute `scope_id` may be missing on object of type `IPv4Address | IPv6Address`
homeassistant/components/ssdp/server.py:179:29: warning[possibly-missing-attribute] Attribute `scope_id` may be missing on object of type `IPv4Address | IPv6Address`
homeassistant/components/starlingbank/sensor.py:9:6: error[unresolved-import] Cannot resolve imported module `starlingbank`
homeassistant/components/statsd/__init__.py:91:21: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]`
homeassistant/components/steam_online/config_flow.py:30:5: warning[possibly-missing-attribute] Submodule `api` may not be available as an attribute on module `steam`
homeassistant/components/steam_online/config_flow.py:31:17: warning[possibly-missing-attribute] Submodule `api` may not be available as an attribute on module `steam`
homeassistant/components/steam_online/config_flow.py:61:21: warning[possibly-missing-attribute] Submodule `api` may not be available as an attribute on module `steam`
@ -3465,6 +3387,7 @@ homeassistant/components/switchbot_cloud/__init__.py:135:37: error[invalid-argum
homeassistant/components/switchbot_cloud/climate.py:144:20: error[no-matching-overload] No overload of bound method `get` matches arguments
homeassistant/components/switchbot_cloud/climate.py:157:25: error[no-matching-overload] No overload of bound method `get` matches arguments
homeassistant/components/switchbot_cloud/entity.py:51:13: error[invalid-argument-type] Argument to bound method `send_command` is incorrect: Expected `str`, found `str | None | Unknown`
homeassistant/components/switchbot_cloud/entity.py:52:13: error[invalid-argument-type] Argument to bound method `send_command` is incorrect: Argument type `Commands` does not satisfy upper bound `CommonCommands` of type variable `T`
homeassistant/components/switchbot_cloud/entity.py:54:13: error[invalid-argument-type] Argument to bound method `send_command` is incorrect: Expected `dict[Unknown, Unknown] | str`, found `dict[Unknown, Unknown] | str | int`
homeassistant/components/switchbot_cloud/sensor.py:344:38: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Device`, found `Device | Remote`
homeassistant/components/switcher_kis/sensor.py:138:16: error[unresolved-attribute] Object of type `SensorEntityDescription` has no attribute `value_fn`
@ -3491,9 +3414,6 @@ homeassistant/components/tank_utility/sensor.py:9:6: error[unresolved-import] Ca
homeassistant/components/tapsaff/binary_sensor.py:8:6: error[unresolved-import] Cannot resolve imported module `tapsaff`
homeassistant/components/tasmota/camera.py:103:24: error[unresolved-attribute] Object of type `object` has no attribute `Request`
homeassistant/components/tasmota/camera.py:104:10: error[unresolved-attribute] Object of type `object` has no attribute `StreamResponse`
homeassistant/components/tasmota/device_automation.py:61:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventDeviceRegistryUpdatedData_Create | _EventDeviceRegistryUpdatedData_Remove | _EventDeviceRegistryUpdatedData_Update]`
homeassistant/components/tasmota/device_automation.py:62:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def async_device_removed(event: Event[_EventDeviceRegistryUpdatedData_Create | _EventDeviceRegistryUpdatedData_Remove | _EventDeviceRegistryUpdatedData_Update]) -> CoroutineType[Any, Any, None]`
homeassistant/components/tasmota/device_automation.py:63:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _async_device_removed_filter(event_data: _EventDeviceRegistryUpdatedData_Create | _EventDeviceRegistryUpdatedData_Remove | _EventDeviceRegistryUpdatedData_Update) -> bool`
homeassistant/components/tautulli/entity.py:35:25: error[invalid-argument-type] Invalid argument to key "identifiers" with declared type `set[tuple[str, str]]` on TypedDict `DeviceInfo`: value of type `set[Unknown | tuple[str, int | None | str]]`
homeassistant/components/tautulli/sensor.py:42:17: error[not-iterable] Object of type `PyTautulliApiHomeStats` is not iterable
homeassistant/components/tautulli/sensor.py:252:13: error[invalid-argument-type] Argument is incorrect: Expected `PyTautulliApiHomeStats`, found `Unknown | list[PyTautulliApiHomeStats] | None`
@ -3925,8 +3845,6 @@ homeassistant/components/vizio/media_player.py:454:25: error[invalid-argument-ty
homeassistant/components/vlc/media_player.py:8:8: error[unresolved-import] Cannot resolve imported module `vlc`
homeassistant/components/voicerss/tts.py:196:46: error[invalid-argument-type] Argument to function `async_get_clientsession` is incorrect: Expected `HomeAssistant`, found `HomeAssistant | None | Unknown`
homeassistant/components/voip/assist_satellite.py:168:9: error[invalid-assignment] Object of type `Self@async_added_to_hass` is not assignable to attribute `protocol` on type `Unknown | VoIPDevice`
homeassistant/components/voip/devices.py:122:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventDeviceRegistryUpdatedData_Create | _EventDeviceRegistryUpdatedData_Remove | _EventDeviceRegistryUpdatedData_Update]`
homeassistant/components/voip/devices.py:123:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def async_device_removed(ev: Event[_EventDeviceRegistryUpdatedData_Create | _EventDeviceRegistryUpdatedData_Remove | _EventDeviceRegistryUpdatedData_Update]) -> None`
homeassistant/components/voip/voip.py:58:16: error[invalid-return-type] Return type does not match returned value: expected `VoipDatagramProtocol`, found `PreRecordMessageProtocol`
homeassistant/components/voip/voip.py:68:5: error[unresolved-attribute] Object of type `VoipDatagramProtocol` has no attribute `_rtp_input`
homeassistant/components/voip/voip.py:69:5: error[unresolved-attribute] Object of type `VoipDatagramProtocol` has no attribute `_rtp_output`
@ -3980,7 +3898,6 @@ homeassistant/components/webostv/config_flow.py:137:9: error[invalid-method-over
homeassistant/components/webostv/media_player.py:128:51: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@cmd]` has no attribute `__name__`
homeassistant/components/webostv/media_player.py:134:29: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@cmd]` has no attribute `__name__`
homeassistant/components/webostv/media_player.py:145:29: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@cmd]` has no attribute `__name__`
homeassistant/components/websocket_api/commands.py:454:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]`
homeassistant/components/websocket_api/connection.py:282:27: warning[possibly-missing-attribute] Submodule `humanize` may not be available as an attribute on module `voluptuous`
homeassistant/components/websocket_api/decorators.py:37:40: error[unresolved-attribute] Object of type `AsyncWebSocketCommandHandler` has no attribute `__name__`
homeassistant/components/websocket_api/decorators.py:142:19: error[non-subscriptable] Cannot subscript object of type `All` with no `__getitem__` method
@ -4022,8 +3939,6 @@ homeassistant/components/websocket_api/http.py:553:21: warning[possibly-missing-
homeassistant/components/websocket_api/http.py:558:21: warning[possibly-missing-attribute] Attribute `data` may be missing on object of type `Unknown | HomeAssistant | None`
homeassistant/components/websocket_api/http.py:561:17: error[no-matching-overload] No overload of function `async_dispatcher_send` matches arguments
homeassistant/components/wemo/__init__.py:92:27: warning[possibly-missing-attribute] Submodule `ssdp` may not be available as an attribute on module `pywemo`
homeassistant/components/wemo/__init__.py:263:37: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`?
homeassistant/components/wemo/__init__.py:263:49: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/components/wemo/light.py:196:32: error[invalid-argument-type] Argument to bound method `turn_on` is incorrect: Expected `bool`, found `Unknown | int`
homeassistant/components/whirlpool/binary_sensor.py:76:16: error[unresolved-attribute] Object of type `BinarySensorEntityDescription` has no attribute `value_fn`
homeassistant/components/whirlpool/climate.py:88:16: error[invalid-return-type] Return type does not match returned value: expected `int | float`, found `int | float | None`
@ -4141,12 +4056,12 @@ homeassistant/components/xs1/sensor.py:7:6: error[unresolved-import] Cannot reso
homeassistant/components/xs1/switch.py:7:6: error[unresolved-import] Cannot resolve imported module `xs1_api_client.api_constants`
homeassistant/components/xs1/switch.py:8:6: error[unresolved-import] Cannot resolve imported module `xs1_api_client.device.actuator`
homeassistant/components/yale/__init__.py:65:36: error[invalid-argument-type] Argument to bound method `async_setup` is incorrect: Expected `Config`, found `dict[Unknown | str, Unknown | Brand]`
homeassistant/components/yale/__init__.py:65:36: error[missing-typed-dict-key] Missing required key 'username' in TypedDict `Config` constructor
homeassistant/components/yale/__init__.py:65:36: error[missing-typed-dict-key] Missing required key 'password' in TypedDict `Config` constructor
homeassistant/components/yale/__init__.py:65:36: error[missing-typed-dict-key] Missing required key 'login_method' in TypedDict `Config` constructor
homeassistant/components/yale/__init__.py:65:36: error[missing-typed-dict-key] Missing required key 'access_token_cache_file' in TypedDict `Config` constructor
homeassistant/components/yale/__init__.py:65:36: error[missing-typed-dict-key] Missing required key 'install_id' in TypedDict `Config` constructor
homeassistant/components/yale/__init__.py:65:36: error[missing-typed-dict-key] Missing required key 'login_method' in TypedDict `Config` constructor
homeassistant/components/yale/__init__.py:65:36: error[missing-typed-dict-key] Missing required key 'password' in TypedDict `Config` constructor
homeassistant/components/yale/__init__.py:65:36: error[missing-typed-dict-key] Missing required key 'timeout' in TypedDict `Config` constructor
homeassistant/components/yale/__init__.py:65:36: error[missing-typed-dict-key] Missing required key 'username' in TypedDict `Config` constructor
homeassistant/components/yale/binary_sensor.py:75:9: error[invalid-argument-type] Argument is incorrect: Expected `(YaleData, DoorbellDetail | LockDetail, /) -> Activity | None`, found `def retrieve_online_state(data: YaleData, detail: DoorbellDetail | LockDetail) -> bool`
homeassistant/components/yale/binary_sensor.py:103:12: warning[possibly-missing-attribute] Attribute `doorsense` may be missing on object of type `DoorbellDetail | LockDetail`
homeassistant/components/yale/binary_sensor.py:106:12: warning[possibly-missing-attribute] Attribute `doorbell` may be missing on object of type `DoorbellDetail | LockDetail`
@ -4203,9 +4118,12 @@ homeassistant/components/yamaha_musiccast/media_player.py:393:13: error[invalid-
homeassistant/components/yamaha_musiccast/number.py:65:35: error[invalid-argument-type] Argument to bound method `set` is incorrect: Expected `int`, found `int | float`
homeassistant/components/yandextts/tts.py:123:46: error[invalid-argument-type] Argument to function `async_get_clientsession` is incorrect: Expected `HomeAssistant`, found `HomeAssistant | None | Unknown`
homeassistant/components/yeelight/config_flow.py:146:9: error[invalid-method-override] Invalid override of method `is_matching`: Definition is incompatible with `ConfigFlow.is_matching`
homeassistant/components/yeelight/device.py:200:9: error[invalid-assignment] Object of type `(CaseInsensitiveDict & ~AlwaysFalsy) | dict[Unknown, Unknown]` is not assignable to attribute `capabilities` of type `dict[str, Any]`
homeassistant/components/yeelight/light.py:256:47: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@_async_cmd]` has no attribute `__name__`
homeassistant/components/yeelight/light.py:264:43: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@_async_cmd]` has no attribute `__name__`
homeassistant/components/yeelight/light.py:270:43: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, _R@_async_cmd]` has no attribute `__name__`
homeassistant/components/yeelight/scanner.py:55:13: error[invalid-assignment] Object of type `Self@async_get` is not assignable to attribute `_scanner` of type `<special form 'typing.Self'> | None`
homeassistant/components/yeelight/scanner.py:56:16: error[invalid-return-type] Return type does not match returned value: expected `Self@async_get`, found `<special form 'typing.Self'> | None`
homeassistant/components/yeelightsunflower/light.py:9:8: error[unresolved-import] Cannot resolve imported module `yeelightsunflower`
homeassistant/components/yi/camera.py:7:6: error[unresolved-import] Cannot resolve imported module `aioftp`
homeassistant/components/yi/camera.py:144:34: error[invalid-argument-type] Argument to bound method `open_camera` is incorrect: Expected `str`, found `Unknown | None`
@ -4213,8 +4131,6 @@ homeassistant/components/yi/camera.py:151:17: error[invalid-argument-type] Argum
homeassistant/components/yolink/switch.py:174:41: error[invalid-assignment] Object of type `None` is not assignable to `ClientRequest`
homeassistant/components/zabbix/__init__.py:15:6: error[unresolved-import] Cannot resolve imported module `zabbix_utils`
homeassistant/components/zabbix/__init__.py:16:6: error[unresolved-import] Cannot resolve imported module `zabbix_utils.exceptions`
homeassistant/components/zabbix/__init__.py:214:25: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]`
homeassistant/components/zabbix/__init__.py:214:46: error[invalid-argument-type] Argument to bound method `listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method Self@setup._event_listener(event: Event[EventStateChangedData]) -> None`
homeassistant/components/zabbix/sensor.py:10:6: error[unresolved-import] Cannot resolve imported module `zabbix_utils`
homeassistant/components/zamg/coordinator.py:51:9: error[invalid-assignment] Object of type `Unknown | dict[Unknown, Unknown] | None` is not assignable to attribute `data` of type `dict[Unknown, Unknown]`
homeassistant/components/zamg/coordinator.py:54:16: error[invalid-return-type] Return type does not match returned value: expected `ZamgData`, found `Unknown | dict[Unknown, Unknown] | None`
@ -4230,6 +4146,7 @@ homeassistant/components/zha/alarm_control_panel.py:94:15: error[unresolved-attr
homeassistant/components/zha/alarm_control_panel.py:100:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_alarm_arm_away`
homeassistant/components/zha/alarm_control_panel.py:106:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_alarm_arm_night`
homeassistant/components/zha/alarm_control_panel.py:112:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_alarm_trigger`
homeassistant/components/zha/api.py:61:24: error[no-matching-overload] No overload of function `max` matches arguments
homeassistant/components/zha/api.py:108:13: error[invalid-argument-type] Argument to bound method `energy_scan` is incorrect: Expected `Channels`, found `Unknown | Literal[134215680]`
homeassistant/components/zha/binary_sensor.py:59:16: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `is_on`
homeassistant/components/zha/button.py:60:15: error[unresolved-attribute] Object of type `PlatformEntity | GroupEntity` has no attribute `async_press`
@ -4296,8 +4213,6 @@ homeassistant/components/zha/helpers.py:374:31: warning[possibly-missing-attribu
homeassistant/components/zha/helpers.py:378:33: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | PermitJoins`
homeassistant/components/zha/helpers.py:388:35: warning[possibly-missing-attribute] Attribute `name` may be missing on object of type `Unknown | RouteStatus`
homeassistant/components/zha/helpers.py:533:44: warning[possibly-missing-attribute] Submodule `handlers` may not be available as an attribute on module `logging`
homeassistant/components/zha/helpers.py:542:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]`
homeassistant/components/zha/helpers.py:543:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method Self@__init__._handle_entity_registry_updated(event: Event[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]) -> CoroutineType[Any, Any, None]`
homeassistant/components/zha/helpers.py:603:27: error[invalid-argument-type] Method `__getitem__` of type `bound method dict[tuple[Platform, str], PlatformEntity].__getitem__(key: tuple[Platform, str], /) -> PlatformEntity` cannot be called with key of type `tuple[str, str]` on object of type `dict[tuple[Platform, str], PlatformEntity]`
homeassistant/components/zha/helpers.py:615:65: error[invalid-argument-type] Argument to bound method `_async_get_or_create_group_proxy` is incorrect: Expected `GroupInfo`, found `Unknown | Group`
homeassistant/components/zha/helpers.py:701:67: error[invalid-argument-type] Argument to bound method `_async_get_or_create_device_proxy` is incorrect: Expected `Device`, found `Unknown | Device | None`
@ -4408,85 +4323,42 @@ homeassistant/config_entries.py:207:17: error[invalid-type-arguments] Too many t
homeassistant/config_entries.py:1273:17: error[invalid-argument-type] Argument to bound method `async_init` is incorrect: Expected `ConfigFlowContext | None`, found `ConfigFlowContext | dict[str, object]`
homeassistant/config_entries.py:1833:9: error[invalid-method-override] Invalid override of method `__setitem__`: Definition is incompatible with `UserDict.__setitem__`
homeassistant/config_entries.py:1904:9: error[invalid-method-override] Invalid override of method `__delitem__`: Definition is incompatible with `UserDict.__delitem__`
homeassistant/config_entries.py:3853:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]`
homeassistant/config_entries.py:3854:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method Self@async_setup._handle_entry_updated(event: Event[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]) -> None`
homeassistant/config_entries.py:3855:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _handle_entry_updated_filter(event_data: _EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update) -> bool`
homeassistant/config_entries.py:3930:33: error[invalid-argument-type] Method `__getitem__` of type `(Overload[(key: Literal["action"], /) -> Literal["create", "remove"], (key: Literal["entity_id"], /) -> str]) | (Overload[(key: Literal["action"], /) -> Literal["update"], (key: Literal["entity_id"], /) -> str, (key: Literal["changes"], /) -> dict[str, Any], (key: Literal["old_entity_id"], /) -> str])` cannot be called with key of type `Literal["changes"]` on object of type `EventEntityRegistryUpdatedData`
homeassistant/config_entries.py:3931:12: error[invalid-argument-type] Method `__getitem__` of type `(Overload[(key: Literal["action"], /) -> Literal["create", "remove"], (key: Literal["entity_id"], /) -> str]) | (Overload[(key: Literal["action"], /) -> Literal["update"], (key: Literal["entity_id"], /) -> str, (key: Literal["changes"], /) -> dict[str, Any], (key: Literal["old_entity_id"], /) -> str])` cannot be called with key of type `Literal["changes"]` on object of type `EventEntityRegistryUpdatedData`
homeassistant/const.py:979:43: error[invalid-type-arguments] Too many type arguments to class `SignalType`: expected 0, got 1
homeassistant/core.py:359:23: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:648:31: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:658:31: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:667:31: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:698:31: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:707:31: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:715:31: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:735:45: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:743:45: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:748:45: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:881:31: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:890:31: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:898:31: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:917:45: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:1026:37: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:1032:37: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:1037:37: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:1277:32: error[invalid-type-form] Variable of type `under_cached_property[Unknown]` is not allowed in a type expression
homeassistant/core.py:1378:32: error[invalid-type-form] Variable of type `under_cached_property[Unknown]` is not allowed in a type expression
homeassistant/core.py:1398:13: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_DataT@_FilterableJobType]]`?
homeassistant/core.py:1398:30: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:1406:27: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_DataT@_OneTimeListener]]`?
homeassistant/core.py:1406:44: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/core.py:1504:13: error[invalid-argument-type] Argument to bound method `async_fire_internal` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_DataT@async_fire] | str`
homeassistant/core.py:1527:48: error[invalid-argument-type] Argument to function `_event_repr` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_DataT@async_fire_internal] | str`
homeassistant/core.py:1621:50: error[invalid-argument-type] Argument to bound method `_async_listen_filterable_job` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_DataT@async_listen] | str`
homeassistant/core.py:1621:62: error[invalid-argument-type] Argument to bound method `_async_listen_filterable_job` is incorrect: Expected `tuple[HassJob[Unknown], ((Mapping[str, Any], /) -> bool) | None]`, found `tuple[HassJob[Unknown], ((_DataT@async_listen, /) -> bool) | None]`
homeassistant/core.py:1621:62: error[invalid-argument-type] Argument to bound method `_async_listen_filterable_job` is incorrect: Expected `tuple[HassJob[(Event[Mapping[str, Any]], /), Coroutine[Any, Any, None] | None], ((Mapping[str, Any], /) -> bool) | None]`, found `tuple[HassJob[(Event[_DataT@async_listen], /), Unknown], ((_DataT@async_listen, /) -> bool) | None]`
homeassistant/core.py:1684:33: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `(Event[_DataT@async_listen_once], /) -> Coroutine[Any, Any, None] | None`
homeassistant/core.py:1687:13: error[invalid-argument-type] Argument to bound method `_async_listen_filterable_job` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_DataT@async_listen_once] | str`
homeassistant/core.py:1925:32: error[invalid-type-form] Variable of type `under_cached_property[Unknown]` is not allowed in a type expression
homeassistant/core.py:2048:9: error[invalid-method-override] Invalid override of method `__setitem__`: Definition is incompatible with `UserDict.__setitem__`
homeassistant/core.py:2356:17: error[invalid-argument-type] Argument to bound method `async_fire_internal` is incorrect: Expected `EventType[dict[Unknown | str, Unknown | str | datetime | State | None]] | str`, found `EventType[EventStateReportedData]`
homeassistant/core.py:2356:17: error[invalid-argument-type] Argument to bound method `async_fire_internal` is incorrect: Expected `EventType[EventStateReportedData | dict[Unknown | str, Unknown | str | datetime | State | None]] | str`, found `EventType[EventStateReportedData]`
homeassistant/data_entry_flow.py:365:27: warning[redundant-cast] Value is already of type `Schema`
homeassistant/data_entry_flow.py:1016:45: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/data_entry_flow.py:1016:79: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/data_entry_flow.py:1031:44: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/data_entry_flow.py:1032:39: error[invalid-type-arguments] Too many type arguments: expected 2, got 3
homeassistant/data_entry_flow.py:1037:23: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, Unknown]` has no attribute `__name__`
homeassistant/data_entry_flow.py:1037:23: error[unresolved-attribute] Object of type `(...) -> Coroutine[Any, Any, ResultT@progress_step]` has no attribute `__name__`
homeassistant/data_entry_flow.py:1063:21: error[invalid-argument-type] Argument to bound method `async_show_progress` is incorrect: Expected `Mapping[str, str] | None`, found `None | @Todo | (dict[str, str] & ~(() -> object)) | (((Any, /) -> dict[str, str]) & ~(() -> object))`
homeassistant/helpers/area_registry.py:90:32: error[invalid-type-form] Variable of type `cached_property[Unknown]` is not allowed in a type expression
homeassistant/helpers/area_registry.py:481:16: error[invalid-return-type] Return type does not match returned value: expected `AreasRegistryStoreData`, found `dict[Unknown | str, Unknown | list[dict[Unknown | str, Unknown | list[str] | str | None] | Unknown]]`
homeassistant/helpers/area_registry.py:482:22: error[invalid-argument-type] Invalid argument to key "areas" with declared type `list[_AreaStoreData]` on TypedDict `AreasRegistryStoreData`: value of type `list[dict[Unknown | str, Unknown | list[str] | str | None] | Unknown]`
homeassistant/helpers/area_registry.py:521:35: error[invalid-key] Unknown key "floor_id" for TypedDict `_EventFloorRegistryUpdatedData_Reorder`: Unknown key "floor_id"
homeassistant/helpers/area_registry.py:526:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventFloorRegistryUpdatedData_Create_Remove_Update | _EventFloorRegistryUpdatedData_Reorder]`
homeassistant/helpers/area_registry.py:527:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _removed_from_registry_filter(event_data: _EventFloorRegistryUpdatedData_Create_Remove_Update | _EventFloorRegistryUpdatedData_Reorder | EventLabelRegistryUpdatedData) -> bool`
homeassistant/helpers/area_registry.py:528:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _handle_floor_registry_update(event: Event[_EventFloorRegistryUpdatedData_Create_Remove_Update | _EventFloorRegistryUpdatedData_Reorder]) -> None`
homeassistant/helpers/area_registry.py:539:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventLabelRegistryUpdatedData]`
homeassistant/helpers/area_registry.py:540:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _removed_from_registry_filter(event_data: _EventFloorRegistryUpdatedData_Create_Remove_Update | _EventFloorRegistryUpdatedData_Reorder | EventLabelRegistryUpdatedData) -> bool`
homeassistant/helpers/area_registry.py:541:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _handle_label_registry_update(event: Event[EventLabelRegistryUpdatedData]) -> None`
homeassistant/helpers/category_registry.py:230:16: error[invalid-return-type] Return type does not match returned value: expected `CategoryRegistryStoreData`, found `dict[Unknown | str, Unknown | dict[str | Unknown, list[dict[Unknown | str, Unknown | str | None] | Unknown] | Unknown]]`
homeassistant/helpers/category_registry.py:231:27: error[invalid-argument-type] Invalid argument to key "categories" with declared type `dict[str, list[_CategoryStoreData]]` on TypedDict `CategoryRegistryStoreData`: value of type `dict[str | Unknown, list[dict[Unknown | str, Unknown | str | None] | Unknown] | Unknown]`
homeassistant/helpers/condition.py:413:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[str, ConditionProtocol | None]`, found `tuple[str, ModuleType]`
homeassistant/helpers/condition.py:480:49: error[call-non-callable] Object of type `None` is not callable
homeassistant/helpers/condition.py:481:39: error[call-non-callable] Object of type `None` is not callable
homeassistant/helpers/config_validation.py:21:5: error[unresolved-import] Module `socket` has no member `_GLOBAL_DEFAULT_TIMEOUT`
homeassistant/helpers/debounce.py:43:28: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `tuple[()]`?
homeassistant/helpers/debounce.py:43:32: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/deprecation.py:44:25: error[unresolved-attribute] Object of type `(_ObjectT@deprecated_substitute, /) -> Any` has no attribute `__name__`
homeassistant/helpers/deprecation.py:158:24: error[unresolved-attribute] Object of type `(...) -> _T@deprecated_hass_argument` has no attribute `__name__`
homeassistant/helpers/deprecation.py:160:34: error[unresolved-attribute] Object of type `(...) -> _T@deprecated_hass_argument` has no attribute `__name__`
homeassistant/helpers/deprecation.py:158:24: error[unresolved-attribute] Object of type `(**_P@deprecated_hass_argument) -> _T@deprecated_hass_argument` has no attribute `__name__`
homeassistant/helpers/deprecation.py:160:34: error[unresolved-attribute] Object of type `(**_P@deprecated_hass_argument) -> _T@deprecated_hass_argument` has no attribute `__name__`
homeassistant/helpers/device_registry.py:1308:20: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | str]` is not assignable to `EventDeviceRegistryUpdatedData`
homeassistant/helpers/device_registry.py:1310:20: error[invalid-assignment] Object of type `dict[Unknown | str, Unknown | str | dict[str, Any]]` is not assignable to `EventDeviceRegistryUpdatedData`
homeassistant/helpers/device_registry.py:1457:13: error[invalid-argument-type] Argument to bound method `async_fire_internal` is incorrect: Expected `EventType[_EventDeviceRegistryUpdatedData_Remove] | str`, found `EventType[_EventDeviceRegistryUpdatedData_Create | _EventDeviceRegistryUpdatedData_Remove | _EventDeviceRegistryUpdatedData_Update]`
homeassistant/helpers/device_registry.py:1838:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventLabelRegistryUpdatedData]`
homeassistant/helpers/device_registry.py:1839:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _label_removed_from_registry_filter(event_data: EventLabelRegistryUpdatedData) -> bool`
homeassistant/helpers/device_registry.py:1840:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _handle_label_registry_update(event: Event[EventLabelRegistryUpdatedData]) -> None`
homeassistant/helpers/device_registry.py:1867:36: error[invalid-argument-type] Method `__getitem__` of type `(Overload[(key: Literal["action"], /) -> Literal["create", "remove"], (key: Literal["entity_id"], /) -> str]) | (Overload[(key: Literal["action"], /) -> Literal["update"], (key: Literal["entity_id"], /) -> str, (key: Literal["changes"], /) -> dict[str, Any], (key: Literal["old_entity_id"], /) -> str])` cannot be called with key of type `Literal["changes"]` on object of type `EventEntityRegistryUpdatedData`
homeassistant/helpers/device_registry.py:1876:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]`
homeassistant/helpers/device_registry.py:1877:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _async_entity_registry_changed(event: Event[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]) -> None`
homeassistant/helpers/device_registry.py:1878:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def entity_registry_changed_filter(event_data: _EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update) -> bool`
homeassistant/helpers/discovery.py:22:46: error[invalid-type-arguments] Too many type arguments to class `SignalTypeFormat`: expected 0, got 1
homeassistant/helpers/discovery_flow.py:59:19: error[invalid-assignment] Object of type `dict[str, object]` is not assignable to `ConfigFlowContext`
homeassistant/helpers/dispatcher.py:30:16: error[invalid-type-arguments] Too many type arguments to class `SignalType`: expected 0, got 1
homeassistant/helpers/dispatcher.py:33:22: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/dispatcher.py:41:45: error[invalid-type-arguments] Too many type arguments to class `SignalType`: expected 0, got 1
homeassistant/helpers/dispatcher.py:55:24: error[invalid-type-arguments] Too many type arguments to class `SignalType`: expected 0, got 1
homeassistant/helpers/dispatcher.py:72:38: error[invalid-type-arguments] Too many type arguments: expected 0, got 1
@ -4498,7 +4370,6 @@ homeassistant/helpers/dispatcher.py:131:45: error[invalid-type-arguments] Too ma
homeassistant/helpers/dispatcher.py:142:45: error[invalid-type-arguments] Too many type arguments to class `SignalType`: expected 0, got 1
homeassistant/helpers/dispatcher.py:149:24: error[invalid-type-arguments] Too many type arguments to class `SignalType`: expected 0, got 1
homeassistant/helpers/dispatcher.py:163:24: error[invalid-type-arguments] Too many type arguments to class `SignalType`: expected 0, got 1
homeassistant/helpers/dispatcher.py:164:19: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/dispatcher.py:186:45: error[invalid-type-arguments] Too many type arguments to class `SignalType`: expected 0, got 1
homeassistant/helpers/dispatcher.py:199:45: error[invalid-type-arguments] Too many type arguments to class `SignalType`: expected 0, got 1
homeassistant/helpers/dispatcher.py:221:45: error[invalid-type-arguments] Too many type arguments to class `SignalType`: expected 0, got 1
@ -4513,109 +4384,28 @@ homeassistant/helpers/entity.py:1578:73: error[invalid-key] Unknown key "changes
homeassistant/helpers/entity_component.py:378:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `EntityPlatformModule | None`, found `ModuleType | None`
homeassistant/helpers/entity_registry.py:218:5: error[call-non-callable] Object of type `_MISSING_TYPE` is not callable
homeassistant/helpers/entity_registry.py:443:5: error[call-non-callable] Object of type `_MISSING_TYPE` is not callable
homeassistant/helpers/entity_registry.py:830:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventDeviceRegistryUpdatedData_Create | _EventDeviceRegistryUpdatedData_Remove | _EventDeviceRegistryUpdatedData_Update]`
homeassistant/helpers/entity_registry.py:831:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `bound method Self@__init__.async_device_modified(event: Event[_EventDeviceRegistryUpdatedData_Create | _EventDeviceRegistryUpdatedData_Remove | _EventDeviceRegistryUpdatedData_Update]) -> None`
homeassistant/helpers/entity_registry.py:1061:13: error[invalid-argument-type] Argument is incorrect: Expected `str`, found `None | str`
homeassistant/helpers/entity_registry.py:1064:13: error[invalid-argument-type] Argument is incorrect: Expected `ReadOnlyEntityOptionsType`, found `ReadOnlyDict[str, ReadOnlyDict[str, Any]] | @Todo | None`
homeassistant/helpers/entity_registry.py:1080:13: error[invalid-argument-type] Argument to bound method `async_fire_internal` is incorrect: Expected `EventType[_EventEntityRegistryUpdatedData_CreateRemove] | str`, found `EventType[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]`
homeassistant/helpers/entity_registry.py:1127:13: error[invalid-argument-type] Argument to bound method `async_fire_internal` is incorrect: Expected `EventType[_EventEntityRegistryUpdatedData_CreateRemove] | str`, found `EventType[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]`
homeassistant/helpers/entity_registry.py:1150:46: error[invalid-key] Unknown key "device" for TypedDict `_EventDeviceRegistryUpdatedData_Create` - did you mean "device_id"?
homeassistant/helpers/entity_registry.py:1150:46: error[invalid-key] Unknown key "device" for TypedDict `_EventDeviceRegistryUpdatedData_Update` - did you mean "device_id"?
homeassistant/helpers/entity_registry.py:1180:45: error[invalid-key] Unknown key "changes" for TypedDict `_EventDeviceRegistryUpdatedData_Create`: Unknown key "changes"
homeassistant/helpers/entity_registry.py:1180:45: error[invalid-key] Unknown key "changes" for TypedDict `_EventDeviceRegistryUpdatedData_Remove`: Unknown key "changes"
homeassistant/helpers/entity_registry.py:1194:56: error[invalid-key] Unknown key "changes" for TypedDict `_EventDeviceRegistryUpdatedData_Create`: Unknown key "changes"
homeassistant/helpers/entity_registry.py:1194:56: error[invalid-key] Unknown key "changes" for TypedDict `_EventDeviceRegistryUpdatedData_Remove`: Unknown key "changes"
homeassistant/helpers/entity_registry.py:1379:43: error[invalid-argument-type] Argument to bound method `async_fire_internal` is incorrect: Expected `EventType[_EventEntityRegistryUpdatedData_Update] | str`, found `EventType[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]`
homeassistant/helpers/entity_registry.py:1863:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventLabelRegistryUpdatedData]`
homeassistant/helpers/entity_registry.py:1864:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _removed_from_registry_filter(event_data: EventLabelRegistryUpdatedData | EventCategoryRegistryUpdatedData) -> bool`
homeassistant/helpers/entity_registry.py:1865:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _handle_label_registry_update(event: Event[EventLabelRegistryUpdatedData]) -> None`
homeassistant/helpers/entity_registry.py:1876:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventCategoryRegistryUpdatedData]`
homeassistant/helpers/entity_registry.py:1877:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def _removed_from_registry_filter(event_data: EventLabelRegistryUpdatedData | EventCategoryRegistryUpdatedData) -> bool`
homeassistant/helpers/entity_registry.py:1878:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def _handle_category_registry_update(event: Event[EventCategoryRegistryUpdatedData]) -> None`
homeassistant/helpers/entity_registry.py:1917:40: error[invalid-key] Unknown key "old_entity_id" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "old_entity_id"
homeassistant/helpers/entity_registry.py:1934:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]`
homeassistant/helpers/entity_registry.py:1935:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def cleanup_restored_states(event: Event[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]) -> None`
homeassistant/helpers/event.py:105:36: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_TypedDictT@_KeyedEventTracker]]`?
homeassistant/helpers/event.py:105:58: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:113:36: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_TypedDictT@_KeyedEventTracker]]`?
homeassistant/helpers/event.py:113:58: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:125:46: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_TypedDictT@_KeyedEventData]]`?
homeassistant/helpers/event.py:125:68: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:299:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]`
homeassistant/helpers/event.py:300:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def state_change_dispatcher(event: Event[EventStateChangedData]) -> None`
homeassistant/helpers/event.py:301:9: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `((Mapping[str, Any], /) -> bool) | None`, found `def state_change_filter(event_data: EventStateChangedData) -> bool`
homeassistant/helpers/event.py:342:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_StateEventDataT@_async_dispatch_entity_id_event_soon]]`?
homeassistant/helpers/event.py:342:66: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:352:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_StateEventDataT@_async_dispatch_entity_id_event]]`?
homeassistant/helpers/event.py:352:66: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:372:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_StateEventDataT@_async_state_filter]]`?
homeassistant/helpers/event.py:372:66: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:437:18: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_TypedDictT@_remove_listener]]`?
homeassistant/helpers/event.py:437:40: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:438:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[_TypedDictT@_remove_listener]]`?
homeassistant/helpers/event.py:438:61: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:474:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_TypedDictT@_async_track_event] | str`
homeassistant/helpers/event.py:501:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[EventEntityRegistryUpdatedData]]`?
homeassistant/helpers/event.py:501:80: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:525:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[EventEntityRegistryUpdatedData]]`?
homeassistant/helpers/event.py:525:80: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:568:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[EventDeviceRegistryUpdatedData]]`?
homeassistant/helpers/event.py:568:80: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:578:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[EventDeviceRegistryUpdatedData]]`?
homeassistant/helpers/event.py:578:80: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:622:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[EventStateChangedData]]`?
homeassistant/helpers/event.py:622:71: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:639:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[EventStateChangedData]]`?
homeassistant/helpers/event.py:639:71: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:689:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[Event[EventStateChangedData]]`?
homeassistant/helpers/event.py:689:71: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:861:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]`
homeassistant/helpers/event.py:861:34: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `Unknown | ((Event[EventStateChangedData], /) -> Any)`
homeassistant/helpers/event.py:1447:13: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventStateChangedData]`
homeassistant/helpers/event.py:1447:34: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `(Event[Mapping[str, Any]], /) -> Coroutine[Any, Any, None] | None`, found `def state_for_cancel_listener(event: Event[EventStateChangedData]) -> None`
homeassistant/helpers/event.py:1466:21: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`?
homeassistant/helpers/event.py:1466:33: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:1500:18: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`?
homeassistant/helpers/event.py:1500:30: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:1546:21: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`?
homeassistant/helpers/event.py:1546:33: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:1571:39: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`?
homeassistant/helpers/event.py:1571:51: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:1581:21: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`?
homeassistant/helpers/event.py:1581:33: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:1602:21: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`?
homeassistant/helpers/event.py:1602:33: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:1632:25: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`?
homeassistant/helpers/event.py:1632:37: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:1633:23: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`?
homeassistant/helpers/event.py:1633:35: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:1708:18: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `tuple[()]`?
homeassistant/helpers/event.py:1708:22: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:1805:18: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`?
homeassistant/helpers/event.py:1805:30: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/event.py:1807:48: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[datetime]`?
homeassistant/helpers/event.py:1807:60: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/floor_registry.py:224:13: error[invalid-argument-type] Argument to bound method `async_fire_internal` is incorrect: Expected `EventType[_EventFloorRegistryUpdatedData_Create_Remove_Update] | str`, found `EventType[_EventFloorRegistryUpdatedData_Create_Remove_Update | _EventFloorRegistryUpdatedData_Reorder]`
homeassistant/helpers/floor_registry.py:237:13: error[invalid-argument-type] Argument to bound method `async_fire_internal` is incorrect: Expected `EventType[_EventFloorRegistryUpdatedData_Create_Remove_Update] | str`, found `EventType[_EventFloorRegistryUpdatedData_Create_Remove_Update | _EventFloorRegistryUpdatedData_Reorder]`
homeassistant/helpers/floor_registry.py:279:13: error[invalid-argument-type] Argument to bound method `async_fire_internal` is incorrect: Expected `EventType[_EventFloorRegistryUpdatedData_Create_Remove_Update] | str`, found `EventType[_EventFloorRegistryUpdatedData_Create_Remove_Update | _EventFloorRegistryUpdatedData_Reorder]`
homeassistant/helpers/floor_registry.py:306:13: error[invalid-argument-type] Argument to bound method `async_fire_internal` is incorrect: Expected `EventType[_EventFloorRegistryUpdatedData_Reorder] | str`, found `EventType[_EventFloorRegistryUpdatedData_Create_Remove_Update | _EventFloorRegistryUpdatedData_Reorder]`
homeassistant/helpers/floor_registry.py:333:16: error[invalid-return-type] Return type does not match returned value: expected `FloorRegistryStoreData`, found `dict[Unknown | str, Unknown | list[dict[Unknown | str, Unknown | list[str] | str | None | int] | Unknown]]`
homeassistant/helpers/floor_registry.py:334:23: error[invalid-argument-type] Invalid argument to key "floors" with declared type `list[_FloorStoreData]` on TypedDict `FloorRegistryStoreData`: value of type `list[dict[Unknown | str, Unknown | list[str] | str | None | int] | Unknown]`
homeassistant/helpers/helper_integration.py:73:32: error[invalid-key] Unknown key "changes" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "changes"
homeassistant/helpers/helper_integration.py:81:60: error[invalid-key] Unknown key "changes" for TypedDict `_EventEntityRegistryUpdatedData_CreateRemove`: Unknown key "changes"
homeassistant/helpers/integration_platform.py:37:26: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `tuple[HomeAssistant, str, Any]`?
homeassistant/helpers/integration_platform.py:37:53: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/label_registry.py:250:16: error[invalid-return-type] Return type does not match returned value: expected `LabelRegistryStoreData`, found `dict[Unknown | str, Unknown | list[dict[Unknown | str, Unknown | str | None] | Unknown]]`
homeassistant/helpers/label_registry.py:251:23: error[invalid-argument-type] Invalid argument to key "labels" with declared type `list[_LabelStoreData]` on TypedDict `LabelRegistryStoreData`: value of type `list[dict[Unknown | str, Unknown | str | None] | Unknown]`
homeassistant/helpers/registry.py:38:9: error[invalid-method-override] Invalid override of method `__setitem__`: Definition is incompatible with `UserDict.__setitem__`
homeassistant/helpers/restore_state.py:94:75: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `datetime`, found `(Unknown & ~str) | datetime | None`
homeassistant/helpers/schema_config_entry_flow.py:258:40: error[invalid-assignment] Object of type `(((dict[str, Any], /) -> Coroutine[Any, Any, str | None]) & ~(() -> object)) | (str & ~(() -> object)) | None` is not assignable to `str | None`
homeassistant/helpers/script.py:153:36: error[invalid-type-arguments] Too many type arguments to class `SignalType`: expected 0, got 3
homeassistant/helpers/script.py:154:46: error[invalid-type-arguments] Too many type arguments to class `SignalTypeFormat`: expected 0, got 1
homeassistant/helpers/script_variables.py:196:9: error[invalid-method-override] Invalid override of method `__setitem__`: Definition is incompatible with `UserDict.__setitem__`
homeassistant/helpers/service.py:923:9: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `list[ServiceCall]`?
homeassistant/helpers/service.py:924:9: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/service.py:1137:38: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/service.py:1177:38: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/singleton.py:68:32: error[invalid-await] `_Coro[_T@singleton] | _U@singleton` is not awaitable
homeassistant/helpers/singleton.py:83:12: error[invalid-return-type] Return type does not match returned value: expected `(_FuncType[_S@singleton], /) -> _FuncType[_S@singleton]`, found `Overload[(func: _FuncType[_Coro[_T@singleton]]) -> _FuncType[_Coro[_T@singleton]], (func: _FuncType[_U@singleton]) -> _FuncType[_U@singleton]]`
homeassistant/helpers/singleton.py:121:5: error[type-assertion-failure] Type `str` does not match asserted type `Unknown`
@ -4689,9 +4479,6 @@ homeassistant/helpers/storage.py:436:30: error[non-subscriptable] Cannot subscri
homeassistant/helpers/storage.py:436:30: error[non-subscriptable] Cannot subscript object of type `None` with no `__getitem__` method
homeassistant/helpers/storage.py:437:35: error[invalid-argument-type] Argument to bound method `async_save` is incorrect: Argument type `Unknown | dict[str, Any] | list[Any] | ... omitted 4 union elements` does not satisfy upper bound `Mapping[str, Any] | Sequence[Any]` of type variable `_T`
homeassistant/helpers/storage.py:437:35: error[invalid-argument-type] Argument to bound method `async_save` is incorrect: Expected `_T@Store`, found `Unknown | dict[str, Any] | list[Any] | ... omitted 4 union elements`
homeassistant/helpers/target.py:328:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventEntityRegistryUpdatedData_CreateRemove | _EventEntityRegistryUpdatedData_Update]`
homeassistant/helpers/target.py:331:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[_EventDeviceRegistryUpdatedData_Create | _EventDeviceRegistryUpdatedData_Remove | _EventDeviceRegistryUpdatedData_Update]`
homeassistant/helpers/target.py:334:17: error[invalid-argument-type] Argument to bound method `async_listen` is incorrect: Expected `EventType[Mapping[str, Any]] | str`, found `EventType[EventAreaRegistryUpdatedData]`
homeassistant/helpers/template/__init__.py:599:13: warning[possibly-missing-attribute] Attribute `loop` may be missing on object of type `Unknown | HomeAssistant | None`
homeassistant/helpers/template/__init__.py:1560:14: warning[possibly-missing-attribute] Submodule `filters` may not be available as an attribute on module `jinja2`
homeassistant/helpers/template/__init__.py:1568:14: warning[possibly-missing-attribute] Submodule `filters` may not be available as an attribute on module `jinja2`
@ -4699,8 +4486,6 @@ homeassistant/helpers/template/__init__.py:1861:19: warning[possibly-missing-att
homeassistant/helpers/template/__init__.py:2061:23: warning[possibly-missing-attribute] Submodule `nodes` may not be available as an attribute on module `jinja2`
homeassistant/helpers/template/__init__.py:2071:23: warning[possibly-missing-attribute] Submodule `nodes` may not be available as an attribute on module `jinja2`
homeassistant/helpers/template/__init__.py:2080:23: warning[possibly-missing-attribute] Submodule `nodes` may not be available as an attribute on module `jinja2`
homeassistant/helpers/trigger.py:621:21: error[invalid-type-form] List literals are not allowed in this context in a type expression: Did you mean `tuple[dict[str, Any], Context | None]`?
homeassistant/helpers/trigger.py:621:55: error[invalid-type-arguments] Too many type arguments to class `HassJob`: expected 1, got 2
homeassistant/helpers/trigger.py:749:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[str, TriggerProtocol]`, found `tuple[Unknown | str, ModuleType]`
homeassistant/helpers/update_coordinator.py:218:20: error[not-iterable] Object of type `GeneratorType[~None, None, None]` is not iterable
homeassistant/loader.py:298:16: error[unresolved-import] Cannot resolve imported module `custom_components`
@ -4766,4 +4551,4 @@ homeassistant/util/signal_type.pyi:61:37: error[invalid-type-arguments] Too many
homeassistant/util/signal_type.pyi:63:49: error[invalid-type-arguments] Too many type arguments to class `SignalTypeFormat`: expected 0, got 1
homeassistant/util/signal_type.pyi:64:38: error[invalid-type-arguments] Too many type arguments to class `SignalType`: expected 0, got 1
homeassistant/util/variance.py:41:43: error[unsupported-operator] Operator `-` is unsupported between objects of type `_R@ignore_variance` and `_R@ignore_variance`
Found 4768 diagnostics
Found 4553 diagnostics

View File

@ -44,7 +44,6 @@ ERROR src/jinja2/filters.py:169:48-61: `dict_items[tuple[str, Any], Unknown]` is
ERROR src/jinja2/filters.py:308:22-56: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type]
ERROR src/jinja2/filters.py:730:34-38: `unit` may be uninitialized [unbound-name]
ERROR src/jinja2/filters.py:1352:9-25: `+=` is not supported between `V` and `V` [unsupported-operation]
ERROR src/jinja2/filters.py:1354:12-14: Returned type `V | Unknown` is not assignable to declared return type `V` [bad-return]
ERROR src/jinja2/idtracking.py:90:9-16: Object of class `object` has no attribute `refs` [missing-attribute]
ERROR src/jinja2/idtracking.py:91:9-17: Object of class `object` has no attribute `loads` [missing-attribute]
ERROR src/jinja2/idtracking.py:92:9-18: Object of class `object` has no attribute `stores` [missing-attribute]
@ -53,7 +52,6 @@ ERROR src/jinja2/lexer.py:816:31-51: Type of yielded value `tuple[Literal[1], st
ERROR src/jinja2/loaders.py:143:32-38: `bucket` may be uninitialized [unbound-name]
ERROR src/jinja2/loaders.py:144:13-19: `bucket` may be uninitialized [unbound-name]
ERROR src/jinja2/loaders.py:145:28-34: `bucket` may be uninitialized [unbound-name]
ERROR src/jinja2/loaders.py:331:29-43: `str` is not assignable to attribute `_archive` with type `None` [bad-assignment]
ERROR src/jinja2/meta.py:79:30-40: Argument `tuple[type[Extends], type[FromImport], type[Import], type[Include]]` is not assignable to parameter `node_type` with type `tuple[type[Extends], ...] | type[Extends]` in function `jinja2.nodes.Node.find_all` [bad-argument-type]
ERROR src/jinja2/parser.py:160:29-31: Argument `object` is not assignable to parameter `self` with type `Node` in function `jinja2.nodes.Node.__init__` [bad-argument-type]
ERROR src/jinja2/parser.py:161:16-18: Returned type `object` is not assignable to declared return type `InternalName` [bad-return]
@ -68,4 +66,4 @@ ERROR src/jinja2/sandbox.py:244:33-43: Cannot set item in `dict[str, ((n: int =
ERROR src/jinja2/utils.py:271:16-39: `>` is not supported between `int` and `None` [unsupported-operation]
ERROR src/jinja2/utils.py:431:2-29: Class `MutableMapping` has no class attribute `register` [missing-attribute]
INFO Checking project configured at `<CWD>/pyrefly.toml`
INFO 69 errors (77 suppressed)
INFO 67 errors (78 suppressed)

View File

@ -50,7 +50,6 @@ ERROR pandas/core/_numba/kernels/mean_.py:135:21-47: `num_consecutive_same_value
ERROR pandas/core/_numba/kernels/mean_.py:136:21-31: `prev_value` is uninitialized [unbound-name]
ERROR pandas/core/_numba/kernels/mean_.py:141:16-42: `num_consecutive_same_value` may be uninitialized [unbound-name]
ERROR pandas/core/_numba/kernels/mean_.py:142:26-36: `prev_value` may be uninitialized [unbound-name]
ERROR pandas/core/_numba/kernels/min_max_.py:109:17-110:37: `int` is not assignable to `int` (caused by inconsistent types when breaking cycles) [bad-assignment]
ERROR pandas/core/_numba/kernels/sum_.py:135:21-47: `num_consecutive_same_value` is uninitialized [unbound-name]
ERROR pandas/core/_numba/kernels/sum_.py:136:21-31: `prev_value` is uninitialized [unbound-name]
ERROR pandas/core/_numba/kernels/sum_.py:142:16-42: `num_consecutive_same_value` may be uninitialized [unbound-name]
@ -58,7 +57,6 @@ ERROR pandas/core/_numba/kernels/sum_.py:143:26-36: `prev_value` may be uninitia
ERROR pandas/core/_numba/kernels/var_.py:144:21-47: `num_consecutive_same_value` is uninitialized [unbound-name]
ERROR pandas/core/_numba/kernels/var_.py:145:21-31: `prev_value` is uninitialized [unbound-name]
ERROR pandas/core/_numba/kernels/var_.py:149:29-55: `num_consecutive_same_value` may be uninitialized [unbound-name]
ERROR pandas/core/algorithms.py:214:16-22: Returned type `ExtensionArray & ArrayLikeT` is not assignable to declared return type `ArrayLikeT` [bad-return]
ERROR pandas/core/algorithms.py:257:12-18: Returned type `ExtensionArray | Index | NumpyExtensionArray | Series | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to declared return type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` [bad-return]
ERROR pandas/core/algorithms.py:469:16-29: Object of class `ndarray` has no attribute `unique` [missing-attribute]
ERROR pandas/core/algorithms.py:476:45-51: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `_get_hashtable_algo` [bad-argument-type]
@ -89,7 +87,6 @@ ERROR pandas/core/apply.py:379:57-60: Argument `(BaseWindow & NDFrame) | (DataFr
ERROR pandas/core/apply.py:812:5-8: Class member `NDFrameApply.obj` overrides parent class `Apply` in an inconsistent manner [bad-override]
ERROR pandas/core/apply.py:868:5-8: Class member `FrameApply.obj` overrides parent class `NDFrameApply` in an inconsistent manner [bad-override]
ERROR pandas/core/apply.py:1125:17-27: Type `Materialization` is not iterable [not-iterable]
ERROR pandas/core/apply.py:1152:42-45: Argument `object` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type]
ERROR pandas/core/apply.py:1477:5-8: Class member `SeriesApply.obj` overrides parent class `NDFrameApply` in an inconsistent manner [bad-override]
ERROR pandas/core/apply.py:1589:5-8: Class member `GroupByApply.obj` overrides parent class `Apply` in an inconsistent manner [bad-override]
ERROR pandas/core/apply.py:1684:5-8: Class member `ResamplerWindowApply.obj` overrides parent class `GroupByApply` in an inconsistent manner [bad-override]
@ -387,6 +384,10 @@ Object of class `ndarray` has no attribute `_codes` [missing-attribute]
ERROR pandas/core/arrays/categorical.py:538:9-29: Class member `Categorical._internal_fill_value` overrides parent class `NDArrayBackedExtensionArray` in an inconsistent manner [bad-override]
ERROR pandas/core/arrays/categorical.py:700:18-46: Object of class `ndarray` has no attribute `is_monotonic_increasing` [missing-attribute]
ERROR pandas/core/arrays/categorical.py:703:26-42: Object of class `ndarray` has no attribute `sort_values` [missing-attribute]
ERROR pandas/core/arrays/categorical.py:1638:5-11: Class member `Categorical.__eq__` overrides parent class `PandasObject` in an inconsistent manner [bad-override]
ERROR pandas/core/arrays/categorical.py:1638:5-11: Class member `Categorical.__eq__` overrides parent class `ObjectStringArrayMixin` in an inconsistent manner [bad-override]
ERROR pandas/core/arrays/categorical.py:1639:5-11: Class member `Categorical.__ne__` overrides parent class `PandasObject` in an inconsistent manner [bad-override]
ERROR pandas/core/arrays/categorical.py:1639:5-11: Class member `Categorical.__ne__` overrides parent class `ObjectStringArrayMixin` in an inconsistent manner [bad-override]
ERROR pandas/core/arrays/categorical.py:1655:9-25: Class member `Categorical._validate_scalar` overrides parent class `NDArrayBackedExtensionArray` in an inconsistent manner [bad-param-name-override]
ERROR pandas/core/arrays/categorical.py:2229:9-18: Class member `Categorical._box_func` overrides parent class `NDArrayBackedExtensionArray` in an inconsistent manner [bad-param-name-override]
ERROR pandas/core/arrays/categorical.py:2252:9-21: Class member `Categorical.__contains__` overrides parent class `NDArrayBackedExtensionArray` in an inconsistent manner [bad-param-name-override]
@ -406,8 +407,6 @@ ERROR pandas/core/arrays/datetimelike.py:716:25-51: Object of class `DatetimeLik
Object of class `ExtensionArray` has no attribute `_internal_get_values`
Object of class `ndarray` has no attribute `_internal_get_values` [missing-attribute]
ERROR pandas/core/arrays/datetimelike.py:1998:9-13: Class member `TimelikeOps.freq` overrides parent class `DatetimeLikeArrayMixin` in an inconsistent manner [bad-override]
ERROR pandas/core/arrays/datetimelike.py:2038:22-27: `Day | Tick | Unknown | None` is not assignable to attribute `_freq` with type `None` [bad-assignment]
ERROR pandas/core/arrays/datetimelike.py:2337:21-25: `BaseOffset | Day | Tick | None` is not assignable to attribute `_freq` with type `None` [bad-assignment]
ERROR pandas/core/arrays/datetimes.py:295:5-11: Class member `DatetimeArray._dtype` overrides parent class `TimelikeOps` in an inconsistent manner [bad-override]
ERROR pandas/core/arrays/datetimes.py:295:5-11: Class member `DatetimeArray._dtype` overrides parent class `DatelikeOps` in an inconsistent manner [bad-override]
ERROR pandas/core/arrays/datetimes.py:410:9-24: Class member `DatetimeArray._generate_range` overrides parent class `TimelikeOps` in an inconsistent manner [bad-override]
@ -434,9 +433,6 @@ ERROR pandas/core/arrays/datetimes.py:524:32-35: Argument `NaTType | Timestamp |
ERROR pandas/core/arrays/datetimes.py:543:33-58: No matching overload found for function `numpy.datetime64.__new__` called with arguments: (type[datetime64[date | int | None]], signedinteger[_64Bit], Literal['ms', 'ns', 's', 'us']) [no-matching-overload]
ERROR pandas/core/arrays/datetimes.py:2891:21-36: Object of class `NoneType` has no attribute `normalize` [missing-attribute]
ERROR pandas/core/arrays/datetimes.py:2894:19-32: Object of class `NoneType` has no attribute `normalize` [missing-attribute]
ERROR pandas/core/arrays/datetimes.py:2896:12-22: Returned type `tuple[_TimestampNoneT1 | Unknown, _TimestampNoneT2 | Unknown]` is not assignable to declared return type `tuple[_TimestampNoneT1, _TimestampNoneT2]` [bad-return]
ERROR pandas/core/arrays/datetimes.py:2928:29-44: Unpacked keyword argument `bool | Unknown | None` is not assignable to parameter `ambiguous` with type `Literal['NaT', 'raise'] | bool` in function `pandas._libs.tslibs.timestamps.Timestamp.tz_localize` [bad-argument-type]
ERROR pandas/core/arrays/datetimes.py:2928:29-44: Unpacked keyword argument `bool | Unknown | None` is not assignable to parameter `nonexistent` with type `Literal['NaT', 'raise', 'shift_backward', 'shift_forward'] | timedelta` in function `pandas._libs.tslibs.timestamps.Timestamp.tz_localize` [bad-argument-type]
ERROR pandas/core/arrays/datetimes.py:2970:17-30: Object of class `NoneType` has no attribute `as_unit` [missing-attribute]
ERROR pandas/core/arrays/datetimes.py:2978:15-26: Object of class `NoneType` has no attribute `as_unit` [missing-attribute]
ERROR pandas/core/arrays/interval.py:293:17-21: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `intervals` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas._libs.interval.intervals_to_interval_bounds` [bad-argument-type]
@ -571,9 +567,6 @@ ERROR pandas/core/arrays/timedeltas.py:1148:20-30: Object of class `ExtensionArr
Object of class `ndarray` has no attribute `_data` [missing-attribute]
ERROR pandas/core/arrays/timedeltas.py:1152:42-46: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Unknown` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas._libs.tslibs.conversion.cast_from_unit_vectorized` [bad-argument-type]
ERROR pandas/core/arrays/timedeltas.py:1161:40-44: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas._libs.tslibs.np_datetime.astype_overflowsafe` [bad-argument-type]
ERROR pandas/core/base.py:198:20-45: `NDFrameT` is not subscriptable [unsupported-operation]
ERROR pandas/core/base.py:212:20-50: `NDFrameT` is not subscriptable [unsupported-operation]
ERROR pandas/core/base.py:236:20-33: `NDFrameT` is not subscriptable [unsupported-operation]
ERROR pandas/core/common.py:525:20-42: Expected *-unpacked P.args and **-unpacked P.kwargs [invalid-param-spec]
ERROR pandas/core/common.py:586:32-41: `old_value` may be uninitialized [unbound-name]
ERROR pandas/core/computation/align.py:176:28-35: `list[Unknown]` is not assignable to upper bound `(...) -> Any` of type variable `F` [bad-specialization]
@ -586,7 +579,6 @@ ERROR pandas/core/computation/eval.py:175:35-38: `msg` may be uninitialized [unb
ERROR pandas/core/computation/expr.py:172:9-173:41: Argument `Generator[object, None, None]` is not assignable to parameter `iterable` with type `Iterable[_Token]` in function `tokenize.untokenize` [bad-argument-type]
ERROR pandas/core/computation/expr.py:241:22-250:18: `-` is not supported between `UnionType` and `frozenset[str]` [unsupported-operation]
ERROR pandas/core/computation/expr.py:241:22-250:18: `-` is not supported between `type` and `frozenset[str]` [unsupported-operation]
ERROR pandas/core/computation/expr.py:635:25-60: `str | Any | Unknown` is not assignable to attribute `assigner` with type `None` [bad-assignment]
ERROR pandas/core/computation/ops.py:79:20-38: Expected second argument to `super` to be a class object or instance, got `type[Constant] | type[Self@Term]` [invalid-argument]
ERROR pandas/core/computation/ops.py:477:32-38: Argument `Any | None` is not assignable to parameter `cls` with type `type` in function `issubclass` [bad-argument-type]
ERROR pandas/core/computation/ops.py:478:36-42: Argument `Any | None` is not assignable to parameter `cls` with type `type` in function `issubclass` [bad-argument-type]
@ -700,24 +692,18 @@ ERROR pandas/core/generic.py:9489:22-9493:10: No matching overload found for fun
ERROR pandas/core/generic.py:9956:64-72: `res_cols` may be uninitialized [unbound-name]
ERROR pandas/core/groupby/generic.py:1133:17-22: Argument `list[ndarray[tuple[int], dtype[Unknown]] | ndarray[tuple[Any, ...], dtype[Any]] | ndarray[tuple[Any, ...], dtype[Unknown]]]` is not assignable to parameter `right_keys` with type `list[ArrayLike]` in function `pandas.core.reshape.merge.get_join_indexers` [bad-argument-type]
ERROR pandas/core/groupby/generic.py:2258:19-23: `path` may be uninitialized [unbound-name]
ERROR pandas/core/groupby/groupby.py:712:24-49: `NDFrameT` is not subscriptable [unsupported-operation]
ERROR pandas/core/groupby/groupby.py:770:24-53: No matching overload found for function `pandas.core.common.pipe` called with arguments: (Self@BaseGroupBy, ((Self@BaseGroupBy, ParamSpec(P)) -> T) | tuple[(...) -> T, str], *tuple[Any, ...], **dict[str, Any]) [no-matching-overload]
ERROR pandas/core/groupby/groupby.py:1603:28-48: Returned type `object` is not assignable to declared return type `NDFrameT` [bad-return]
WARN pandas/core/groupby/groupby.py:1837:28-63: Redundant cast: `Literal['idxmax', 'idxmin']` is the same type as `Literal['idxmax', 'idxmin']` [redundant-cast]
ERROR pandas/core/groupby/groupby.py:1845:49-55: Argument `NDFrameT | Unknown` is not assignable to parameter `result` with type `NDFrameT` in function `GroupBy._wrap_transform_fast_result` [bad-argument-type]
ERROR pandas/core/groupby/groupby.py:1870:16-22: Returned type `NDFrameT | Unknown` is not assignable to declared return type `NDFrameT` [bad-return]
ERROR pandas/core/groupby/groupby.py:5212:18-24: `concat` may be uninitialized [unbound-name]
ERROR pandas/core/groupby/groupby.py:5618:54-65: `weights_arr` may be uninitialized [unbound-name]
ERROR pandas/core/groupby/groupby.py:5719:16-22: Returned type `Series | NDFrameT` is not assignable to declared return type `NDFrameT` [bad-return]
ERROR pandas/core/groupby/grouper.py:369:28-36: `NDFrameT` is not subscriptable [unsupported-operation]
ERROR pandas/core/groupby/grouper.py:656:47-54: `na_code` may be uninitialized [unbound-name]
ERROR pandas/core/groupby/grouper.py:657:34-41: `na_mask` may be uninitialized [unbound-name]
ERROR pandas/core/groupby/grouper.py:657:43-50: `na_code` may be uninitialized [unbound-name]
ERROR pandas/core/groupby/grouper.py:678:16-30: Returned type `tuple[ndarray[tuple[Any, ...], dtype[signedinteger[_NBitIntP]]] | ndarray[tuple[Any, ...], dtype[Any]], ExtensionArray | Index | ndarray[tuple[Any, ...], dtype[Any]]]` is not assignable to declared return type `tuple[ndarray[tuple[Any, ...], dtype[signedinteger[Any]]], ArrayLike]` [bad-return]
ERROR pandas/core/groupby/grouper.py:871:30-43: `NDFrameT` is not subscriptable [unsupported-operation]
ERROR pandas/core/groupby/grouper.py:881:28-36: Object of class `NoneType` has no attribute `name` [missing-attribute]
ERROR pandas/core/groupby/grouper.py:886:57-60: Argument `Index | Unknown | None` is not assignable to parameter `key` with type `Hashable` in function `pandas.core.generic.NDFrame._check_label_or_level_ambiguity` [bad-argument-type]
ERROR pandas/core/groupby/grouper.py:887:49-57: `NDFrameT` is not subscriptable [unsupported-operation]
ERROR pandas/core/groupby/grouper.py:892:32-36: Argument `Index | Unknown | None` is not assignable to parameter `element` with type `Hashable` in function `set.add` [bad-argument-type]
ERROR pandas/core/groupby/grouper.py:893:42-45: Argument `Index | Unknown | None` is not assignable to parameter `key` with type `Hashable` in function `pandas.core.generic.NDFrame._is_level_reference` [bad-argument-type]
ERROR pandas/core/groupby/numba_.py:116:18-42: Type `prange` is not iterable [not-iterable]
@ -1088,27 +1074,6 @@ ERROR pandas/core/indexes/multi.py:3539:17-3568:43: `ndarray[tuple[int], dtype[A
ERROR pandas/core/indexes/multi.py:4048:22-66: Illegal `super(type[MultiIndex], Index)` call: `Index` is not an instance or subclass of `type[MultiIndex]` [invalid-super-call]
ERROR pandas/core/indexes/multi.py:4090:20-38: Returned type `Index` is not assignable to declared return type `MultiIndex` [bad-return]
ERROR pandas/core/indexes/multi.py:4158:9-29: Class member `MultiIndex._validate_fill_value` overrides parent class `Index` in an inconsistent manner [bad-param-name-override]
ERROR pandas/core/indexes/multi.py:4291:5-12: Class member `MultiIndex.__add__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4292:5-13: Class member `MultiIndex.__radd__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4293:5-13: Class member `MultiIndex.__iadd__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4294:5-12: Class member `MultiIndex.__sub__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4295:5-13: Class member `MultiIndex.__rsub__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4297:5-12: Class member `MultiIndex.__pow__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4298:5-13: Class member `MultiIndex.__rpow__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4299:5-12: Class member `MultiIndex.__mul__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4300:5-13: Class member `MultiIndex.__rmul__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4301:5-17: Class member `MultiIndex.__floordiv__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4302:5-18: Class member `MultiIndex.__rfloordiv__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4303:5-16: Class member `MultiIndex.__truediv__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4304:5-17: Class member `MultiIndex.__rtruediv__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4305:5-12: Class member `MultiIndex.__mod__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4306:5-13: Class member `MultiIndex.__rmod__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4307:5-15: Class member `MultiIndex.__divmod__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4308:5-16: Class member `MultiIndex.__rdivmod__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4310:5-12: Class member `MultiIndex.__neg__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4311:5-12: Class member `MultiIndex.__pos__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4312:5-12: Class member `MultiIndex.__abs__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/multi.py:4313:5-15: Class member `MultiIndex.__invert__` overrides parent class `Index` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/period.py:165:5-10: Class member `PeriodIndex._data` overrides parent class `DatetimeIndexOpsMixin` in an inconsistent manner [bad-override]
ERROR pandas/core/indexes/period.py:243:34-38: Argument `Unknown | Self@PeriodIndex | None` is not assignable to parameter `data` with type `ExtensionArray | Index | Sequence[Period | str | None] | Series | ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas.core.arrays.period.period_array` [bad-argument-type]
ERROR pandas/core/indexes/period.py:518:16-22: Returned type `NaTType | Period` is not assignable to declared return type `Period` [bad-return]
@ -1121,6 +1086,7 @@ ERROR pandas/core/indexes/range.py:249:9-31: Object of class `object` has no att
ERROR pandas/core/indexes/range.py:250:9-27: Object of class `object` has no attribute `_references` [missing-attribute]
ERROR pandas/core/indexes/range.py:251:16-22: Returned type `object` is not assignable to declared return type `Self@RangeIndex` [bad-return]
ERROR pandas/core/indexes/range.py:779:9-20: Class member `RangeIndex.sort_values` overrides parent class `Index` in an inconsistent manner [bad-override]
WARN pandas/core/indexes/range.py:937:25-30: Identity comparison `False is False` is always True [unnecessary-comparison]
ERROR pandas/core/indexes/range.py:1129:24-28: `lidx` may be uninitialized [unbound-name]
ERROR pandas/core/indexes/range.py:1129:62-66: `lidx` may be uninitialized [unbound-name]
ERROR pandas/core/indexes/range.py:1130:24-28: `ridx` may be uninitialized [unbound-name]
@ -1138,6 +1104,9 @@ ERROR pandas/core/indexing.py:2019:60-72: Cannot index into `slice[Any, Any, Any
ERROR pandas/core/indexing.py:2033:45-55: Argument `Hashable | slice[Any, Any, Any] | Unknown` is not assignable to parameter `loc` with type `int` in function `_iLocIndexer._setitem_single_column` [bad-argument-type]
ERROR pandas/core/indexing.py:2277:43-53: Argument `Any | None` is not assignable to parameter `dtype` with type `dtype[Any]` in function `pandas.core.dtypes.cast.maybe_promote` [bad-argument-type]
ERROR pandas/core/interchange/column.py:174:17-31: Object of class `str` has no attribute `itemsize` [missing-attribute]
ERROR pandas/core/internals/__init__.py:9:5-12: Name `Block` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR pandas/core/internals/__init__.py:11:5-22: Name `DatetimeTZBlock` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR pandas/core/internals/__init__.py:12:5-21: Name `ExtensionBlock` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR pandas/core/internals/api.py:82:5-11: Class member `_DatetimeTZBlock.values` overrides parent class `DatetimeLikeBlock` in an inconsistent manner [bad-override]
ERROR pandas/core/internals/api.py:113:57-61: Argument `Unknown | None` is not assignable to parameter `ndim` with type `int` in function `pandas.core.internals.blocks.extract_pandas_array` [bad-argument-type]
ERROR pandas/core/internals/api.py:133:13-19: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[datetime64[date | int | None]]]` in function `pandas.core.arrays.datetimes.DatetimeArray._simple_new` [bad-argument-type]
@ -1226,6 +1195,7 @@ ERROR pandas/core/reshape/merge.py:2927:32-39: Argument `ExtensionArray | ndarra
ERROR pandas/core/reshape/merge.py:2928:32-39: Argument `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `values` with type `ndarray[tuple[Any, ...], dtype[Any]]` in function `pandas._libs.hashtable.Factorizer.factorize` [bad-argument-type]
ERROR pandas/core/reshape/pivot.py:403:30-42: `values_multi` may be uninitialized [unbound-name]
ERROR pandas/core/reshape/pivot.py:592:25-34: Argument `list[Hashable | Unknown]` is not assignable to parameter `tuples` with type `Iterable[tuple[Hashable, ...]]` in function `pandas.core.indexes.multi.MultiIndex.from_tuples` [bad-argument-type]
WARN pandas/core/reshape/pivot.py:1164:21-25: Identity comparison `True is True` is always True [unnecessary-comparison]
ERROR pandas/core/reshape/reshape.py:513:13-520:65: `DataFrame | Series` is not assignable to `DataFrame` (caused by inconsistent types when breaking cycles) [bad-assignment]
ERROR pandas/core/reshape/reshape.py:742:9-745:66: `DataFrame | Series` is not assignable to `DataFrame` (caused by inconsistent types when breaking cycles) [bad-assignment]
ERROR pandas/core/reshape/reshape.py:756:9-763:62: `DataFrame | Series` is not assignable to `DataFrame` (caused by inconsistent types when breaking cycles) [bad-assignment]
@ -1267,6 +1237,7 @@ ERROR pandas/core/strings/accessor.py:331:21-44: No attribute `list_flatten` in
ERROR pandas/core/strings/accessor.py:923:21-48: Object of class `str` has no attribute `categories` [missing-attribute]
ERROR pandas/core/strings/accessor.py:1046:21-48: Object of class `str` has no attribute `categories` [missing-attribute]
ERROR pandas/core/strings/accessor.py:1066:21-48: Object of class `str` has no attribute `categories` [missing-attribute]
WARN pandas/core/strings/accessor.py:1647:30-34: Identity comparison `False is None` is always False [unnecessary-comparison]
ERROR pandas/core/strings/accessor.py:3894:12-18: `result` may be uninitialized [unbound-name]
ERROR pandas/core/strings/object_array.py:229:20-45: Object of class `type` has no attribute `_from_sequence` [missing-attribute]
WARN pandas/core/tools/datetimes.py:533:27-65: Redundant cast: `int` is the same type as `int` [redundant-cast]
@ -1282,6 +1253,7 @@ ERROR pandas/core/tools/numeric.py:278:38-59: Object of class `ExtensionDtype` h
ERROR pandas/core/tools/numeric.py:294:24-56: No matching overload found for function `numpy._core.multiarray._ConstructorEmpty.__call__` called with arguments: (tuple[Any, ...], dtype=ExtensionDtype | dtype[signedinteger[_64Bit]] | dtype[Any] | Unknown) [no-matching-overload]
ERROR pandas/core/util/numba_.py:79:8-23: Module `numba.extending` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR pandas/core/util/numba_.py:89:22-37: Module `numba.extending` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
WARN pandas/core/window/common.py:54:30-34: Identity comparison `True is True` is always True [unnecessary-comparison]
ERROR pandas/core/window/ewm.py:913:47-55: Argument `Unknown | None` is not assignable to parameter `_grouper` with type `BaseGrouper` in function `pandas.core.window.rolling.BaseWindowGroupby.__init__` [bad-argument-type]
ERROR pandas/core/window/expanding.py:419:28-51: No matching overload found for function `pandas.core.window.rolling.RollingAndExpandingMixin.pipe` called with arguments: (((Self@Expanding, ParamSpec(P)) -> T) | tuple[(...) -> T, str], *tuple[Any, ...], **dict[str, Any]) [no-matching-overload]
ERROR pandas/core/window/numba_.py:67:18-43: Type `prange` is not iterable [not-iterable]
@ -1345,7 +1317,6 @@ ERROR pandas/io/common.py:1161:12-42: Returned type `tuple[_IOWrapper, Literal[T
ERROR pandas/io/excel/_base.py:493:24-34: Argument `int | list[IntStrT] | str | None` is not assignable to parameter `sheet_name` with type `int | list[int] | list[str] | str | None` in function `ExcelFile.parse` [bad-argument-type]
ERROR pandas/io/excel/_base.py:496:23-32: Argument `Sequence[int] | int | str | None` is not assignable to parameter `index_col` with type `Sequence[int] | int | None` in function `ExcelFile.parse` [bad-argument-type]
ERROR pandas/io/excel/_base.py:520:12-16: Returned type `DataFrame | dict[int, DataFrame] | dict[str, DataFrame]` is not assignable to declared return type `DataFrame | dict[IntStrT, DataFrame]` [bad-return]
ERROR pandas/io/excel/_base.py:547:25-44: `IO[Unknown] & _WorkbookT` is not assignable to attribute `book` with type `_WorkbookT` [bad-assignment]
ERROR pandas/io/excel/_base.py:737:22-34: `list[int | list[str]]` is not assignable to variable `sheets` with type `list[int] | list[str]` [bad-assignment]
ERROR pandas/io/excel/_base.py:877:28-39: `control_row` may be uninitialized [unbound-name]
ERROR pandas/io/excel/_base.py:1174:16-35: Returned type `object` is not assignable to declared return type `Self@ExcelWriter` [bad-return]
@ -1363,6 +1334,7 @@ ERROR pandas/io/excel/_xlrd.py:79:9-23: Class member `XlrdReader.get_sheet_data`
ERROR pandas/io/formats/excel.py:252:21-24: Argument `dict[str, dict[str, bool | float | str | None] | dict[str, bool | str | None] | dict[str, str | None] | dict[str, dict[str, str | None]] | Unknown]` is not assignable to parameter `d` with type `dict[str, str | None]` in function `remove_none` [bad-argument-type]
ERROR pandas/io/formats/excel.py:253:16-19: Returned type `dict[str, dict[str, bool | float | str | None] | dict[str, bool | str | None] | dict[str, str | None] | dict[str, dict[str, str | None]] | Unknown]` is not assignable to declared return type `dict[str, dict[str, str]]` [bad-return]
WARN pandas/io/formats/format.py:237:28-43: Redundant cast: `int` is the same type as `int` [redundant-cast]
WARN pandas/io/formats/format.py:283:58-62: Identity comparison `True is not None` is always True [unnecessary-comparison]
ERROR pandas/io/formats/format.py:1052:1-16: Argument `(buf: PathLike[str] | WriteBuffer[str] | str | None, encoding: str | None = None) -> Generator[StringIO, None, None] | Generator[WriteBuffer[str], None, None]` is not assignable to parameter `func` with type `(buf: PathLike[str] | WriteBuffer[str] | str | None, encoding: str | None = None) -> Iterator[StringIO]` in function `contextlib.contextmanager` [bad-argument-type]
ERROR pandas/io/formats/format.py:1081:19-20: Type of yielded value `TextIOWrapper[_WrappedBuffer]` is not assignable to declared return type `StringIO` [invalid-yield]
ERROR pandas/io/formats/format.py:1159:9-15: Argument `DatetimeArray | ExtensionArray | TimedeltaArray | ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to parameter `values` with type `DatetimeArray` in function `_Datetime64Formatter.__init__` [bad-argument-type]
@ -1390,16 +1362,8 @@ ERROR pandas/io/formats/printing.py:452:53-61: Argument `str | tuple[str, ...] |
ERROR pandas/io/formats/string.py:143:31-34: `idx` may be uninitialized [unbound-name]
ERROR pandas/io/formats/string.py:150:28-63: Argument `str` is not assignable to parameter `object` with type `LiteralString` in function `list.append` [bad-argument-type]
ERROR pandas/io/formats/style.py:2010:33-39: `result` may be uninitialized [unbound-name]
ERROR pandas/io/formats/style.py:2704:24-55: Unpacked `dict[str, str]` is not assignable to `dict[str, str]` [bad-unpacking]
ERROR pandas/io/formats/style.py:3879:24-53: No matching overload found for function `pandas.core.common.pipe` called with arguments: (Self@Styler, ((Self@Styler, ParamSpec(P)) -> T) | tuple[(...) -> T, str], *tuple[Any, ...], **dict[str, Any]) [no-matching-overload]
ERROR pandas/io/formats/style.py:4236:9-17: `object` is not assignable to `float` [bad-assignment]
ERROR pandas/io/formats/style.py:4269:24-32: `-` is not supported between `Literal[0]` and `object` [unsupported-operation]
ERROR pandas/io/formats/style.py:4269:24-32: `-` is not supported between `float` and `object` [unsupported-operation]
ERROR pandas/io/formats/style.py:4269:34-43: `-` is not supported between `Literal[0]` and `object` [unsupported-operation]
ERROR pandas/io/formats/style.py:4269:34-43: `-` is not supported between `float` and `object` [unsupported-operation]
ERROR pandas/io/formats/style.py:4279:25-33: `-` is not supported between `Literal[0]` and `object` [unsupported-operation]
ERROR pandas/io/formats/style.py:4279:25-33: `-` is not supported between `float` and `object` [unsupported-operation]
ERROR pandas/io/formats/style.py:4280:25-34: `-` is not supported between `Literal[0]` and `object` [unsupported-operation]
ERROR pandas/io/formats/style.py:4280:25-34: `-` is not supported between `float` and `object` [unsupported-operation]
ERROR pandas/io/formats/style_render.py:959:28-42: `row_body_cells` may be uninitialized [unbound-name]
ERROR pandas/io/formats/style_render.py:1849:32-42: `last_label` is uninitialized [unbound-name]
ERROR pandas/io/formats/style_render.py:1855:33-43: `last_label` is uninitialized [unbound-name]
@ -1410,18 +1374,10 @@ ERROR pandas/io/html.py:639:9-18: Class member `_BeautifulSoupHtml5LibFrameParse
ERROR pandas/io/html.py:731:9-18: Class member `_LxmlFrameParser._parse_td` overrides parent class `_HtmlFrameParser` in an inconsistent manner [bad-param-name-override]
ERROR pandas/io/html.py:736:9-22: Class member `_LxmlFrameParser._parse_tables` overrides parent class `_HtmlFrameParser` in an inconsistent manner [bad-param-name-override]
ERROR pandas/io/json/_json.py:955:16-19: `obj` may be uninitialized [unbound-name]
ERROR pandas/io/json/_json.py:1025:38-46: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `dtype` with type `ExtensionDtype | Mapping[Hashable, Dtype] | dtype[Any] | str | type[bool | complex | object | str] | None` in function `Parser.__init__` [bad-argument-type]
ERROR pandas/io/json/_json.py:1025:38-46: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `convert_axes` with type `bool` in function `Parser.__init__` [bad-argument-type]
ERROR pandas/io/json/_json.py:1025:38-46: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `convert_dates` with type `bool | list[str]` in function `Parser.__init__` [bad-argument-type]
ERROR pandas/io/json/_json.py:1025:38-46: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `keep_default_dates` with type `bool` in function `Parser.__init__` [bad-argument-type]
ERROR pandas/io/json/_json.py:1025:38-46: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `precise_float` with type `bool` in function `Parser.__init__` [bad-argument-type]
ERROR pandas/io/json/_json.py:1025:38-46: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `dtype_backend` with type `Literal['numpy_nullable', 'pyarrow'] | _NoDefault` in function `Parser.__init__` [bad-argument-type]
ERROR pandas/io/json/_json.py:1029:39-47: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `dtype` with type `ExtensionDtype | Mapping[Hashable, Dtype] | dtype[Any] | str | type[bool | complex | object | str] | None` in function `Parser.__init__` [bad-argument-type]
ERROR pandas/io/json/_json.py:1029:39-47: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `convert_axes` with type `bool` in function `Parser.__init__` [bad-argument-type]
ERROR pandas/io/json/_json.py:1029:39-47: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `convert_dates` with type `bool | list[str]` in function `Parser.__init__` [bad-argument-type]
ERROR pandas/io/json/_json.py:1029:39-47: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `keep_default_dates` with type `bool` in function `Parser.__init__` [bad-argument-type]
ERROR pandas/io/json/_json.py:1029:39-47: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `precise_float` with type `bool` in function `Parser.__init__` [bad-argument-type]
ERROR pandas/io/json/_json.py:1029:39-47: Unpacked keyword argument `_NoDefault | bool | str | Unknown | None` is not assignable to parameter `dtype_backend` with type `Literal['numpy_nullable', 'pyarrow'] | _NoDefault` in function `Parser.__init__` [bad-argument-type]
ERROR pandas/io/json/_json.py:1025:38-46: Argument `bool | None` is not assignable to parameter `convert_axes` with type `bool` in function `Parser.__init__` [bad-argument-type]
ERROR pandas/io/json/_json.py:1025:38-46: Argument `_NoDefault | str` is not assignable to parameter `dtype_backend` with type `Literal['numpy_nullable', 'pyarrow'] | _NoDefault` in function `Parser.__init__` [bad-argument-type]
ERROR pandas/io/json/_json.py:1029:39-47: Argument `bool | None` is not assignable to parameter `convert_axes` with type `bool` in function `Parser.__init__` [bad-argument-type]
ERROR pandas/io/json/_json.py:1029:39-47: Argument `_NoDefault | str` is not assignable to parameter `dtype_backend` with type `Literal['numpy_nullable', 'pyarrow'] | _NoDefault` in function `Parser.__init__` [bad-argument-type]
ERROR pandas/io/json/_normalize.py:148:12-18: Returned type `list[dict[str, Any] | list[dict[str, Any]]]` is not assignable to declared return type `dict[str, Any] | list[dict[str, Any]]` [bad-return]
ERROR pandas/io/json/_normalize.py:578:32-41: Argument `int` is not assignable to parameter `object` with type `_NestedSequence[_SupportsArray[dtype[numpy.bool[builtins.bool] | integer[Any]]]] | _SupportsArray[dtype[numpy.bool[builtins.bool] | integer[Any]]]` in function `list.append` [bad-argument-type]
ERROR pandas/io/json/_table_schema.py:311:36-53: Object of class `Index` has no attribute `levels` [missing-attribute]
@ -1454,13 +1410,18 @@ ERROR pandas/io/pytables.py:140:39-44: Could not import `Block` from `pandas.cor
ERROR pandas/io/pytables.py:483:8-47: `<=` is not supported between `None` and `None` [unsupported-operation]
ERROR pandas/io/pytables.py:487:11-31: `>` is not supported between `None` and `Literal[1]` [unsupported-operation]
ERROR pandas/io/pytables.py:639:30-38: `None` is not subscriptable [unsupported-operation]
ERROR pandas/io/pytables.py:702:20-704:14: Returned type `list[None]` is not assignable to declared return type `list[str]` [bad-return]
ERROR pandas/io/pytables.py:702:20-704:14: Returned type `list[Unknown | None]` is not assignable to declared return type `list[str]` [bad-return]
ERROR pandas/io/pytables.py:1281:13-14: `s` may be uninitialized [unbound-name]
ERROR pandas/io/pytables.py:1285:16-17: `s` may be uninitialized [unbound-name]
ERROR pandas/io/pytables.py:1287:16-17: `s` may be uninitialized [unbound-name]
ERROR pandas/io/pytables.py:1659:20-40: Object of class `NoneType` has no attribute `rstrip` [missing-attribute]
ERROR pandas/io/pytables.py:1941:64-72: Argument `Unknown | None` is not assignable to parameter `encoding` with type `str` in function `HDFStore._create_storer` [bad-argument-type]
ERROR pandas/io/pytables.py:2017:16-21: `group` may be uninitialized [unbound-name]
ERROR pandas/io/pytables.py:2091:15-34: `<` is not supported between `Literal[0]` and `None` [unsupported-operation]
ERROR pandas/io/pytables.py:2091:15-34: `<` is not supported between `None` and `None` [unsupported-operation]
ERROR pandas/io/pytables.py:2092:24-48: `+` is not supported between `Literal[0]` and `None` [unsupported-operation]
ERROR pandas/io/pytables.py:2092:24-48: `+` is not supported between `None` and `int` [unsupported-operation]
ERROR pandas/io/pytables.py:2092:24-48: `+` is not supported between `None` and `None` [unsupported-operation]
ERROR pandas/io/pytables.py:2196:16-33: Object of class `NoneType` has no attribute `itemsize` [missing-attribute]
ERROR pandas/io/pytables.py:2254:41-49: Argument `Unknown | None` is not assignable to parameter `val_kind` with type `str` in function `_maybe_convert` [bad-argument-type]
ERROR pandas/io/pytables.py:2277:44-52: Unpacked keyword argument `Unknown | None` is not assignable to parameter `freq` with type `BaseOffset | _NoDefault | str` in function `pandas.core.indexes.datetimes.DatetimeIndex.__new__` [bad-argument-type]
@ -1513,19 +1474,17 @@ ERROR pandas/io/pytables.py:3678:21-29: No matching overload found for function
ERROR pandas/io/pytables.py:4135:13-26: Cannot index into `list[Index]` [bad-index]
ERROR pandas/io/pytables.py:4136:40-43: Argument `int | Unknown | None` is not assignable to parameter `axis` with type `Literal['columns', 'index', 'rows'] | int` in function `pandas.core.generic.NDFrame._get_axis_name` [bad-argument-type]
ERROR pandas/io/pytables.py:4383:23-37: `process_filter` may be uninitialized [unbound-name]
ERROR pandas/io/pytables.py:4402:28-63: Cannot set item in `dict[str, int | str]` [unsupported-operation]
ERROR pandas/io/pytables.py:4402:28-63: `dict[str, Unknown | None]` is not assignable to TypedDict key `description` with type `int | str` [bad-typed-dict-key]
ERROR pandas/io/pytables.py:4598:24-40: Object of class `bool` has no attribute `all` [missing-attribute]
ERROR pandas/io/pytables.py:4945:5-11: Class member `GenericTable.levels` overrides parent class `AppendableFrameTable` in an inconsistent manner [bad-override]
ERROR pandas/io/pytables.py:5205:19-35: Object of class `ndarray` has no attribute `to_numpy` [missing-attribute]
ERROR pandas/io/pytables.py:5503:44-49: `ndarray[tuple[Any, ...], dtype[Any]]` is not assignable to attribute `coordinates` with type `None` [bad-assignment]
ERROR pandas/io/pytables.py:5506:39-46: No matching overload found for function `Selection.generate` called with arguments: (ndarray[tuple[Any, ...], dtype[Any]] | Unknown | None) [no-matching-overload]
ERROR pandas/io/sas/sas_xport.py:491:32-33: `v` may be uninitialized [unbound-name]
ERROR pandas/io/sql.py:1036:20-35: Object of class `NoneType` has no attribute `copy` [missing-attribute]
ERROR pandas/io/sql.py:1045:38-50: Object of class `NoneType` has no attribute `columns` [missing-attribute]
ERROR pandas/io/sql.py:1051:38-48: Object of class `NoneType` has no attribute `items` [missing-attribute]
ERROR pandas/io/sql.py:1100:21-31: Argument `Unknown | None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type]
ERROR pandas/io/sql.py:1113:13-1128:55: `int | object | None` is not assignable to `None` (caused by inconsistent types when breaking cycles) [bad-assignment]
ERROR pandas/io/sql.py:1129:16-30: Returned type `int | object | None` is not assignable to declared return type `int | None` [bad-return]
ERROR pandas/io/sql.py:1113:13-1128:55: `int | Unknown | None` is not assignable to `None` (caused by inconsistent types when breaking cycles) [bad-assignment]
ERROR pandas/io/sql.py:1217:23-39: Object of class `NoneType` has no attribute `index` [missing-attribute]
ERROR pandas/io/sql.py:1231:36-54: Object of class `NoneType` has no attribute `columns` [missing-attribute]
ERROR pandas/io/sql.py:1232:21-37: Object of class `NoneType` has no attribute `index` [missing-attribute]
@ -1610,11 +1569,9 @@ ERROR pandas/plotting/_matplotlib/converter.py:1102:5-9: Class member `TimeSerie
ERROR pandas/plotting/_matplotlib/core.py:443:16-19: Returned type `list[tuple[Unknown]]` is not assignable to declared return type `bool | list[tuple[int, ...]]` [bad-return]
ERROR pandas/plotting/_matplotlib/core.py:698:33-41: Argument `type[bool]` is not assignable to parameter `object` with type `type[number] | str` in function `list.append` [bad-argument-type]
ERROR pandas/plotting/_matplotlib/core.py:709:33-65: Argument `list[str]` is not assignable to parameter `iterable` with type `Iterable[type[number]]` in function `list.extend` [bad-argument-type]
WARN pandas/plotting/_matplotlib/core.py:727:28-32: Identity comparison `True is True` is always True [unnecessary-comparison]
ERROR pandas/plotting/_matplotlib/core.py:1063:35-39: Function declared to return `bool`, but one or more paths are missing an explicit `return` [bad-return]
ERROR pandas/plotting/_matplotlib/core.py:1163:23-32: `NDFrameT` is not subscriptable [unsupported-operation]
ERROR pandas/plotting/_matplotlib/core.py:1164:20-48: `NDFrameT` is not subscriptable [unsupported-operation]
ERROR pandas/plotting/_matplotlib/core.py:1202:26-1205:14: No matching overload found for function `numpy.lib._shape_base_impl.tile` called with arguments: (list[Number | number[Any, complex | float | int]], tuple[int, int]) [no-matching-overload]
ERROR pandas/plotting/_matplotlib/core.py:1211:16-25: Returned type `tuple[Unknown, NDFrameT | Unknown]` is not assignable to declared return type `tuple[Any, NDFrameT]` [bad-return]
ERROR pandas/plotting/_matplotlib/core.py:1240:32-40: Module `matplotlib.axes` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR pandas/plotting/_matplotlib/core.py:1383:21-32: Module `matplotlib.patches` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR pandas/plotting/_matplotlib/core.py:1575:40-42: Argument `Iterable[tuple[Hashable, Series]] | Iterator[tuple[Hashable, ndarray[tuple[Any, ...], dtype[Any]]]]` is not assignable to parameter `iterable` with type `Iterable[tuple[Hashable, Series]]` in function `enumerate.__new__` [bad-argument-type]
@ -1626,7 +1583,6 @@ ERROR pandas/plotting/_matplotlib/misc.py:192:18-29: Module `matplotlib.patches`
ERROR pandas/plotting/_matplotlib/misc.py:195:22-33: Module `matplotlib.patches` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR pandas/plotting/_matplotlib/misc.py:416:27-42: Unpacked keyword argument `int | str` is not assignable to parameter `ymin` with type `float` in function `matplotlib.axes._axes.Axes.axvline` [bad-argument-type]
ERROR pandas/plotting/_matplotlib/misc.py:416:27-42: Unpacked keyword argument `int | str` is not assignable to parameter `ymax` with type `float` in function `matplotlib.axes._axes.Axes.axvline` [bad-argument-type]
ERROR pandas/plotting/_matplotlib/timeseries.py:294:12-16: Returned type `NDFrameT | Unknown` is not assignable to declared return type `NDFrameT` [bad-return]
ERROR pandas/plotting/_matplotlib/tools.py:82:12-21: Module `matplotlib.table` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR pandas/plotting/_matplotlib/tools.py:85:19-28: Argument `Index | Unknown` is not assignable to parameter `rowLabels` with type `Sequence[str] | None` in function `matplotlib.table.table` [bad-argument-type]
ERROR pandas/plotting/_matplotlib/tools.py:86:19-28: Argument `Index | Unknown` is not assignable to parameter `colLabels` with type `Sequence[str] | None` in function `matplotlib.table.table` [bad-argument-type]
@ -1656,4 +1612,4 @@ ERROR typings/numba.pyi:20:7-23: Module `numba.core.types` exists, but was not i
ERROR typings/numba.pyi:21:12-28: Module `numba.core.types` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR typings/numba.pyi:24:21-35: No attribute `compiler` in module `numba` [missing-attribute]
INFO Checking project configured at `<CWD>/pyrefly.toml`
INFO 1,592 errors (595 suppressed)
INFO 1,542 errors (592 suppressed)

View File

@ -12,6 +12,8 @@ pandas/_version.py:48:5: error[unresolved-attribute] Unresolved attribute `versi
pandas/_version.py:49:5: error[unresolved-attribute] Unresolved attribute `verbose` on type `VersioneerConfig`.
pandas/_version.py:101:16: error[unresolved-attribute] Object of type `BaseException | None` has no attribute `errno`
pandas/_version.py:111:14: error[unresolved-attribute] Object of type `str` has no attribute `decode`
pandas/conftest.py:2123:10: error[missing-argument] No argument provided for required parameter `cls`
pandas/conftest.py:2123:10: error[missing-argument] No argument provided for required parameter `cls`
pandas/core/_numba/executor.py:48:22: error[not-iterable] Object of type `prange` is not iterable
pandas/core/_numba/executor.py:52:22: error[not-iterable] Object of type `prange` is not iterable
pandas/core/_numba/executor.py:78:22: error[not-iterable] Object of type `prange` is not iterable
@ -123,7 +125,7 @@ pandas/core/arrays/_arrow_string_mixins.py:360:22: error[unresolved-attribute] M
pandas/core/arrays/_arrow_string_mixins.py:361:21: error[unresolved-attribute] Module `pyarrow.compute` has no member `not_equal`
pandas/core/arrays/_arrow_string_mixins.py:362:29: error[unresolved-attribute] Module `pyarrow.compute` has no member `add`
pandas/core/arrays/_arrow_string_mixins.py:363:22: error[unresolved-attribute] Module `pyarrow.compute` has no member `if_else`
pandas/core/arrays/_mixins.py:135:20: error[invalid-return-type] Return type does not match returned value: expected `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]`, found `ndarray[tuple[Any, ...], type]`
pandas/core/arrays/_mixins.py:242:16: error[invalid-return-type] Return type does not match returned value: expected `Self@_concat_same_type`, found `NDArrayBackedExtensionArray`
pandas/core/arrays/_mixins.py:283:9: error[invalid-method-override] Invalid override of method `__getitem__`: Definition is incompatible with `ExtensionArray.__getitem__`
pandas/core/arrays/arrow/accessors.py:115:25: error[unresolved-attribute] Module `pyarrow.compute` has no member `list_value_length`
pandas/core/arrays/arrow/accessors.py:163:23: error[unresolved-attribute] Module `pyarrow.compute` has no member `list_element`
@ -309,7 +311,9 @@ pandas/core/arrays/arrow/array.py:3199:22: error[unresolved-attribute] Module `p
pandas/core/arrays/arrow/extension_types.py:171:5: error[unresolved-attribute] Unresolved attribute `_hotfix_installed` on type `<module 'pyarrow'>`.
pandas/core/arrays/boolean.py:259:24: warning[possibly-missing-attribute] Attribute `shape` may be missing on object of type `Unknown | None | ndarray[tuple[Any, ...], dtype[bool[bool]]] | ndarray[tuple[Any, ...], dtype[Any]]`
pandas/core/arrays/boolean.py:262:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[ndarray[tuple[Any, ...], dtype[Any]], ndarray[tuple[Any, ...], dtype[Any]]]`, found `tuple[@Todo | ndarray[tuple[int], dtype[Any]], Unknown | None | ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]] | ndarray[tuple[Any, ...], dtype[Any]]]`
pandas/core/arrays/boolean.py:333:16: error[invalid-return-type] Return type does not match returned value: expected `Self@_simple_new`, found `BooleanArray`
pandas/core/arrays/boolean.py:385:9: error[invalid-method-override] Invalid override of method `_coerce_to_array`: Definition is incompatible with `BaseMaskedArray._coerce_to_array`
pandas/core/arrays/categorical.py:385:16: error[invalid-return-type] Return type does not match returned value: expected `Self@_simple_new`, found `Categorical`
pandas/core/arrays/categorical.py:494:25: warning[possibly-missing-attribute] Attribute `_codes` may be missing on object of type `Unknown | RangeIndex | ndarray[tuple[Any, ...], dtype[Any]] | ExtensionArray`
pandas/core/arrays/categorical.py:700:18: warning[possibly-missing-attribute] Attribute `is_monotonic_increasing` may be missing on object of type `Index | Unknown | ndarray[tuple[Any, ...], dtype[bool[bool]]]`
pandas/core/arrays/categorical.py:703:26: warning[possibly-missing-attribute] Attribute `sort_values` may be missing on object of type `Index | Unknown | ndarray[tuple[Any, ...], dtype[bool[bool]]]`
@ -323,15 +327,14 @@ pandas/core/arrays/categorical.py:2989:9: error[invalid-method-override] Invalid
pandas/core/arrays/categorical.py:2992:9: error[invalid-method-override] Invalid override of method `_delegate_property_set`: Definition is incompatible with `PandasDelegate._delegate_property_set`
pandas/core/arrays/datetimelike.py:387:9: error[invalid-method-override] Invalid override of method `__getitem__`: Definition is incompatible with `ExtensionArray.__getitem__`
pandas/core/arrays/datetimelike.py:565:18: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `(Unknown & ~str) | Period | Timestamp | Timedelta | NaTType`
pandas/core/arrays/datetimelike.py:1144:42: error[invalid-argument-type] Argument to bound method `_simple_new` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[datetime64[date | int | None]]]`, found `ndarray[tuple[Any, ...], str]`
pandas/core/arrays/datetimelike.py:1206:43: error[invalid-argument-type] Argument to bound method `_simple_new` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[timedelta64[timedelta | int | None]]]`, found `ndarray[tuple[Any, ...], str]`
pandas/core/arrays/datetimelike.py:1315:20: error[invalid-return-type] Return type does not match returned value: expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `ndarray[tuple[int, ...], dtype[Any] | str]`
pandas/core/arrays/datetimelike.py:714:16: warning[possibly-missing-attribute] Attribute `categories` may be missing on object of type `Unknown | Self@_validate_listlike`
pandas/core/arrays/datetimelike.py:716:25: warning[possibly-missing-attribute] Attribute `_internal_get_values` may be missing on object of type `Unknown | Self@_validate_listlike`
pandas/core/arrays/datetimelike.py:1582:16: error[invalid-return-type] Return type does not match returned value: expected `Self@_quantile`, found `DatetimeLikeArrayMixin`
pandas/core/arrays/datetimelike.py:1771:47: error[invalid-argument-type] Argument to bound method `_simple_new` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[timedelta64[timedelta | int | None]]]`, found `ndarray[tuple[Any, ...], str]`
pandas/core/arrays/datetimelike.py:2375:9: error[invalid-method-override] Invalid override of method `_concat_same_type`: Definition is incompatible with `NDArrayBacked._concat_same_type`
pandas/core/arrays/datetimelike.py:2399:16: error[invalid-return-type] Return type does not match returned value: expected `Self@copy`, found `TimelikeOps`
pandas/core/arrays/datetimelike.py:2458:16: error[invalid-return-type] Return type does not match returned value: expected `Self@take`, found `TimelikeOps`
pandas/core/arrays/datetimelike.py:2476:36: error[invalid-argument-type] Argument to function `py_get_unit_from_dtype` is incorrect: Expected `dtype[Any]`, found `ExtensionDtype`
pandas/core/arrays/datetimes.py:332:16: error[invalid-return-type] Return type does not match returned value: expected `Self@_simple_new`, found `DatetimeArray`
pandas/core/arrays/datetimes.py:410:9: error[invalid-method-override] Invalid override of method `_generate_range`: Definition is incompatible with `TimelikeOps._generate_range`
pandas/core/arrays/datetimes.py:483:62: warning[possibly-missing-attribute] Attribute `tz` may be missing on object of type `Timestamp | None`
pandas/core/arrays/datetimes.py:501:51: error[invalid-argument-type] Argument to bound method `tz_localize` is incorrect: Expected `bool | Literal["NaT", "raise"]`, found `Literal["NaT", "infer", "raise"] | ndarray[tuple[Any, ...], dtype[bool[bool]]]`
@ -344,8 +347,6 @@ pandas/core/arrays/datetimes.py:524:32: error[invalid-argument-type] Argument to
pandas/core/arrays/datetimes.py:561:45: error[invalid-argument-type] Argument to bound method `_from_value_and_reso` is incorrect: Expected `int`, found `datetime64[date | int | None]`
pandas/core/arrays/datetimes.py:590:21: error[invalid-type-form] Variable of type `property` is not allowed in a type expression
pandas/core/arrays/datetimes.py:639:25: error[invalid-type-form] Variable of type `property` is not allowed in a type expression
pandas/core/arrays/datetimes.py:1114:65: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]] | tuple[ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]], ...], /) -> ndarray[tuple[Any, ...], str], (key: SupportsIndex | tuple[SupportsIndex, ...], /) -> Any, (key: SupportsIndex | slice[Any, Any, Any] | EllipsisType | ... omitted 5 union elements, /) -> ndarray[tuple[Any, ...], str], (key: str, /) -> ndarray[tuple[Any, ...], dtype[Any]], (key: list[str], /) -> ndarray[tuple[Any, ...], dtype[void]]]` cannot be called with key of type `Literal[0]` on object of type `ndarray[tuple[Any, ...], str]`
pandas/core/arrays/datetimes.py:1121:33: error[invalid-argument-type] Argument to bound method `_simple_new` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[datetime64[date | int | None]]]`, found `ndarray[tuple[Any, ...], str]`
pandas/core/arrays/datetimes.py:2891:21: error[invalid-assignment] Object of type `Timestamp` is not assignable to `_TimestampNoneT1@_maybe_normalize_endpoints`
pandas/core/arrays/datetimes.py:2894:19: error[invalid-assignment] Object of type `Timestamp` is not assignable to `_TimestampNoneT2@_maybe_normalize_endpoints`
pandas/core/arrays/datetimes.py:2928:29: error[invalid-argument-type] Argument to bound method `tz_localize` is incorrect: Expected `bool | Literal["NaT", "raise"]`, found `Unknown | bool | None`
@ -358,9 +359,10 @@ pandas/core/arrays/interval.py:399:63: warning[possibly-missing-attribute] Attri
pandas/core/arrays/interval.py:401:35: warning[possibly-missing-attribute] Attribute `_ensure_matching_resos` may be missing on object of type `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Unknown`
pandas/core/arrays/interval.py:831:9: error[invalid-method-override] Invalid override of method `__getitem__`: Definition is incompatible with `ExtensionArray.__getitem__`
pandas/core/arrays/interval.py:1127:9: error[invalid-method-override] Invalid override of method `_concat_same_type`: Definition is incompatible with `ExtensionArray._concat_same_type`
pandas/core/arrays/interval.py:1147:73: error[invalid-argument-type] Argument to bound method `_ensure_simple_new_inputs` is incorrect: Expected `Literal["both", "left", "neither", "right"] | None`, found `str | Unknown`
pandas/core/arrays/interval.py:1801:50: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Argument type `Period | Timestamp | Timedelta | NaTType | Any` does not satisfy constraints (`int`, `int | float`, `Timestamp`, `Timedelta`) of type variable `_OrderableT`
pandas/core/arrays/interval.py:1801:50: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int`, found `Period | Timestamp | Timedelta | NaTType | Any`
pandas/core/arrays/masked.py:185:30: error[invalid-assignment] Object of type `ndarray[tuple[int, ...], dtype[Any] | type]` is not assignable to `ndarray[tuple[Any, ...], dtype[Any]]`
pandas/core/arrays/masked.py:156:54: error[invalid-argument-type] Argument to bound method `_coerce_to_array` is incorrect: Expected `dtype[Any] | ExtensionDtype`, found `Unknown | None`
pandas/core/arrays/masked.py:385:9: error[invalid-method-override] Invalid override of method `__contains__`: Definition is incompatible with `ExtensionArray.__contains__`
pandas/core/arrays/masked.py:1036:9: error[invalid-method-override] Invalid override of method `_concat_same_type`: Definition is incompatible with `ExtensionArray._concat_same_type`
pandas/core/arrays/masked.py:1054:9: error[invalid-method-override] Invalid override of method `take`: Definition is incompatible with `ExtensionArray.take`
@ -406,6 +408,7 @@ pandas/core/arrays/string_arrow.py:494:23: error[unresolved-attribute] Module `p
pandas/core/arrays/string_arrow.py:494:41: error[unresolved-attribute] Module `pyarrow.compute` has no member `not_equal`
pandas/core/arrays/string_arrow.py:496:23: error[unresolved-attribute] Module `pyarrow.compute` has no member `not_equal`
pandas/core/arrays/timedeltas.py:188:47: error[invalid-argument-type] Argument to bound method `_from_value_and_reso` is incorrect: Expected `signedinteger[_64Bit]`, found `timedelta64[timedelta | int | None]`
pandas/core/arrays/timedeltas.py:240:16: error[invalid-return-type] Return type does not match returned value: expected `Self@_simple_new`, found `TimedeltaArray`
pandas/core/arrays/timedeltas.py:243:9: error[invalid-method-override] Invalid override of method `_from_sequence`: Definition is incompatible with `ExtensionArray._from_sequence`
pandas/core/arrays/timedeltas.py:250:46: error[invalid-argument-type] Argument to function `astype_overflowsafe` is incorrect: Expected `dtype[Any]`, found `(Unknown & ~AlwaysTruthy & ~None) | dtype[Any] | ExtensionDtype`
pandas/core/arrays/timedeltas.py:276:46: error[invalid-argument-type] Argument to function `astype_overflowsafe` is incorrect: Expected `dtype[Any]`, found `(Unknown & ~AlwaysTruthy & ~None) | dtype[Any] | ExtensionDtype`
@ -462,7 +465,6 @@ pandas/core/dtypes/dtypes.py:1363:39: error[invalid-type-form] Invalid subscript
pandas/core/dtypes/dtypes.py:1398:23: error[invalid-type-form] Invalid subscript of object of type `property` in type expression
pandas/core/dtypes/dtypes.py:1548:23: error[invalid-type-form] Invalid subscript of object of type `property` in type expression
pandas/core/dtypes/inference.py:301:17: error[invalid-argument-type] Argument to function `len` is incorrect: Expected `Sized`, found `<Protocol with members '__len__'>`
pandas/core/dtypes/missing.py:392:12: error[unsupported-operator] Unary operator `~` is unsupported for type `~bool`
pandas/core/frame.py:894:56: error[invalid-argument-type] Argument to function `construct_1d_arraylike_from_scalar` is incorrect: Expected `str | bytes | date | ... omitted 10 union elements`, found `(@Todo & ~BlockManager & ~None & ~Top[dict[Unknown, Unknown]] & ~ndarray[tuple[object, ...], dtype[object]] & ~Series & ~Index & ~ExtensionArray) | (list[Unknown] & ~BlockManager & ~ndarray[tuple[object, ...], dtype[object]] & ~Series & ~Index & ~ExtensionArray)`
pandas/core/frame.py:900:21: error[invalid-argument-type] Argument to function `construct_2d_arraylike_from_scalar` is incorrect: Expected `str | bytes | date | ... omitted 10 union elements`, found `(@Todo & ~BlockManager & ~None & ~Top[dict[Unknown, Unknown]] & ~ndarray[tuple[object, ...], dtype[object]] & ~Series & ~Index & ~ExtensionArray) | (list[Unknown] & ~BlockManager & ~ndarray[tuple[object, ...], dtype[object]] & ~Series & ~Index & ~ExtensionArray)`
pandas/core/frame.py:2358:37: error[no-matching-overload] No overload of function `maybe_convert_objects` matches arguments
@ -552,6 +554,7 @@ pandas/core/indexes/datetimelike.py:156:10: error[invalid-argument-type] Argumen
pandas/core/indexes/datetimelike.py:200:42: warning[possibly-missing-attribute] Attribute `asi8` may be missing on object of type `(Any & Index) | CategoricalIndex | Self@equals`
pandas/core/indexes/datetimelike.py:527:10: error[invalid-argument-type] Argument to function `doc` is incorrect: Expected `None | str | ((...) -> Unknown)`, found `property`
pandas/core/indexes/datetimelike.py:756:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[Self@_wrap_join_result, ndarray[tuple[Any, ...], dtype[signedinteger[_64Bit]]] | None, ndarray[tuple[Any, ...], dtype[signedinteger[_64Bit]]] | None]`, found `tuple[DatetimeTimedeltaMixin | Unknown, ndarray[tuple[Any, ...], dtype[signedinteger[_64Bit]]] | None, ndarray[tuple[Any, ...], dtype[signedinteger[_64Bit]]] | None]`
pandas/core/indexes/datetimelike.py:807:45: error[unsupported-operator] Operator `-` is unsupported between objects of type `Timestamp | NaTType | Timedelta` and `BaseOffset`
pandas/core/indexes/datetimelike.py:815:45: error[invalid-argument-type] Argument to bound method `is_on_offset` is incorrect: Expected `datetime`, found `Timestamp | NaTType | Timedelta`
pandas/core/indexes/datetimelike.py:823:16: error[invalid-return-type] Return type does not match returned value: expected `Self@delete`, found `DatetimeTimedeltaMixin`
pandas/core/indexes/datetimelike.py:855:13: error[invalid-assignment] Object of type `BaseOffset | None` is not assignable to attribute `_freq` on type `DatetimeArray | TimedeltaArray`
@ -603,7 +606,6 @@ pandas/core/internals/construction.py:992:27: error[no-matching-overload] No ove
pandas/core/internals/construction.py:1021:46: error[invalid-argument-type] Argument to function `maybe_cast_to_datetime` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]] | list[Unknown]`, found `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]]`
pandas/core/internals/managers.py:1656:9: error[invalid-method-override] Invalid override of method `_equal_values`: Definition is incompatible with `BaseBlockManager._equal_values`
pandas/core/internals/managers.py:2231:9: error[invalid-method-override] Invalid override of method `_equal_values`: Definition is incompatible with `BaseBlockManager._equal_values`
pandas/core/internals/managers.py:2501:42: error[invalid-argument-type] Argument to bound method `_simple_new` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[datetime64[date | int | None]]]`, found `ndarray[tuple[int, ...], str]`
pandas/core/missing.py:153:12: error[invalid-return-type] Return type does not match returned value: expected `ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]]`, found `Unknown | (ExtensionArray & ndarray[tuple[object, ...], dtype[object]]) | ndarray[tuple[Any, ...], dtype[Any]]`
pandas/core/missing.py:608:19: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `Literal["linear", "nearest", "nearest-up", "slinear", "zero", ... omitted 4 literals] | int`, found `Unknown | None | (str & ~Literal["polynomial"])`
pandas/core/missing.py:613:28: error[unsupported-operator] Operator `<=` is not supported between objects of type `Unknown | None` and `Literal[0]`
@ -625,6 +627,7 @@ pandas/core/ops/mask_ops.py:132:12: error[invalid-return-type] Return type does
pandas/core/ops/mask_ops.py:172:18: error[unsupported-operator] Operator `&` is unsupported between objects of type `(NAType & ndarray[tuple[object, ...], dtype[object]]) | ndarray[tuple[Any, ...], dtype[Any]]` and `bool | NAType | ndarray[tuple[Any, ...], dtype[Any]]`
pandas/core/ops/mask_ops.py:190:12: error[invalid-return-type] Return type does not match returned value: expected `tuple[ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]], ndarray[tuple[Any, ...], dtype[numpy.bool[builtins.bool]]]]`, found `tuple[(NAType & ndarray[tuple[object, ...], dtype[object]]) | ndarray[tuple[Any, ...], dtype[Any]] | Unknown, Any | ndarray[tuple[Any, ...], dtype[Any]]]`
pandas/core/ops/mask_ops.py:194:32: error[no-matching-overload] No overload matches arguments
pandas/core/resample.py:265:9: error[invalid-method-override] Invalid override of method `pipe`: Definition is incompatible with `BaseGroupBy.pipe`
pandas/core/resample.py:442:45: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `((...) -> Unknown) | str | list[((...) -> Unknown) | str] | MutableMapping[Hashable, ((...) -> Unknown) | str | list[((...) -> Unknown) | str]]`, found `Unknown | None`
pandas/core/resample.py:2110:9: error[invalid-method-override] Invalid override of method `_upsample`: Definition is incompatible with `Resampler._upsample`
pandas/core/resample.py:2242:9: error[invalid-method-override] Invalid override of method `_upsample`: Definition is incompatible with `Resampler._upsample`
@ -712,15 +715,14 @@ pandas/core/strings/object_array.py:115:26: error[no-matching-overload] No overl
pandas/core/tools/datetimes.py:387:27: warning[possibly-missing-attribute] Attribute `_dt_tz_convert` may be missing on object of type `(Unknown & ~Top[list[Unknown]] & ~tuple[object, ...] & ~NumpyExtensionArray & ~Index) | (ndarray[tuple[Any, ...], dtype[Any]] & ~Index)`
pandas/core/tools/datetimes.py:389:27: warning[possibly-missing-attribute] Attribute `_dt_tz_localize` may be missing on object of type `(Unknown & ~Top[list[Unknown]] & ~tuple[object, ...] & ~NumpyExtensionArray & ~Index) | (ndarray[tuple[Any, ...], dtype[Any]] & ~Index)`
pandas/core/tools/datetimes.py:393:35: error[invalid-argument-type] Argument to function `is_supported_dtype` is incorrect: Expected `dtype[Any]`, found `(Any & ~DatetimeTZDtype) | None`
pandas/core/tools/datetimes.py:452:41: error[invalid-argument-type] Argument to bound method `_simple_new` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[datetime64[date | int | None]]]`, found `ndarray[tuple[Any, ...], str]`
pandas/core/tools/datetimes.py:1062:22: error[invalid-assignment] Object of type `bool` is not assignable to `Timestamp | NaTType | Series | Index`
pandas/core/tools/numeric.py:225:16: warning[possibly-missing-attribute] Attribute `isna` may be missing on object of type `(Unknown & ~BaseMaskedArray) | ndarray[tuple[Any, ...], dtype[Any]]`
pandas/core/tools/numeric.py:226:18: warning[possibly-missing-attribute] Attribute `dropna` may be missing on object of type `(Unknown & ~BaseMaskedArray) | ndarray[tuple[Any, ...], dtype[Any]]`
pandas/core/util/hashing.py:314:16: error[no-matching-overload] No overload of bound method `astype` matches arguments
pandas/core/util/numba_.py:79:8: warning[possibly-missing-attribute] Submodule `extending` may not be available as an attribute on module `numba`
pandas/core/util/numba_.py:82:22: error[unresolved-attribute] Object of type `(...) -> Unknown` has no attribute `__name__`
pandas/core/util/numba_.py:89:22: warning[possibly-missing-attribute] Submodule `extending` may not be available as an attribute on module `numba`
pandas/core/window/ewm.py:913:38: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `BaseGrouper`, found `Unknown | None`
pandas/core/window/expanding.py:336:9: error[invalid-method-override] Invalid override of method `pipe`: Definition is incompatible with `RollingAndExpandingMixin.pipe`
pandas/core/window/numba_.py:67:18: error[not-iterable] Object of type `prange` is not iterable
pandas/core/window/numba_.py:131:18: error[not-iterable] Object of type `prange` is not iterable
pandas/core/window/numba_.py:229:18: error[not-iterable] Object of type `prange` is not iterable
@ -733,6 +735,7 @@ pandas/core/window/rolling.py:1139:43: error[unsupported-operator] Operator `<`
pandas/core/window/rolling.py:1288:45: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `((...) -> Unknown) | str | list[((...) -> Unknown) | str] | MutableMapping[Hashable, ((...) -> Unknown) | str | list[((...) -> Unknown) | str]]`, found `Unknown | None`
pandas/core/window/rolling.py:1291:22: error[call-non-callable] Object of type `None` is not callable
pandas/core/window/rolling.py:2018:45: error[unsupported-operator] Operator `<` is not supported between objects of type `(Unknown & ~BaseIndexer) | None` and `Literal[0]`
pandas/core/window/rolling.py:2263:9: error[invalid-method-override] Invalid override of method `pipe`: Definition is incompatible with `RollingAndExpandingMixin.pipe`
pandas/core/window/rolling.py:3494:13: error[invalid-argument-type] Argument to bound method `__init__` is incorrect: Expected `int | BaseIndexer`, found `(Unknown & BaseIndexer) | int | (Unknown & ~BaseIndexer) | None`
pandas/io/clipboard/__init__.py:121:18: error[unresolved-reference] Name `Foundation` used when not defined
pandas/io/clipboard/__init__.py:122:45: error[unresolved-reference] Name `Foundation` used when not defined
@ -795,6 +798,7 @@ pandas/io/excel/_base.py:846:20: error[unsupported-operator] Operator `>` is not
pandas/io/excel/_base.py:852:17: error[invalid-assignment] Invalid subscript assignment with key of type `object` and value of type `list[Hashable]` on object of type `list[Unknown]`
pandas/io/excel/_base.py:852:57: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `object` on object of type `list[Unknown]`
pandas/io/excel/_base.py:855:54: error[invalid-argument-type] Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `object` on object of type `list[Unknown]`
pandas/io/excel/_base.py:1174:16: error[invalid-return-type] Return type does not match returned value: expected `Self@__new__`, found `@Todo | ExcelWriter[Unknown]`
pandas/io/excel/_base.py:1366:16: error[invalid-return-type] Return type does not match returned value: expected `tuple[int | float | str | date, str | None]`, found `tuple[Unknown | int | float | Decimal | str, None | Unknown | str]`
pandas/io/excel/_calamine.py:100:9: error[invalid-method-override] Invalid override of method `get_sheet_data`: Definition is incompatible with `BaseExcelReader.get_sheet_data`
pandas/io/excel/_odfreader.py:102:9: error[invalid-method-override] Invalid override of method `get_sheet_data`: Definition is incompatible with `BaseExcelReader.get_sheet_data`
@ -898,7 +902,7 @@ pandas/io/pytables.py:2645:72: error[invalid-argument-type] Argument to bound me
pandas/io/pytables.py:2700:12: warning[possibly-missing-attribute] Attribute `startswith` may be missing on object of type `(Unknown & ~None) | ExtensionDtype | str | ... omitted 3 union elements`
pandas/io/pytables.py:2702:48: error[invalid-argument-type] Argument to function `_set_tz` is incorrect: Expected `str`, found `(Unknown & ~None) | ExtensionDtype | str | ... omitted 3 union elements`
pandas/io/pytables.py:2742:29: error[no-matching-overload] No overload of bound method `astype` matches arguments
pandas/io/pytables.py:2749:17: error[invalid-argument-type] Argument to function `_unconvert_string_array` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `DatetimeArray | ndarray[tuple[Any, ...], dtype[Any]] | Unknown | ndarray[tuple[Any, ...], Unknown]`
pandas/io/pytables.py:2749:17: error[invalid-argument-type] Argument to function `_unconvert_string_array` is incorrect: Expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `DatetimeArray | ndarray[tuple[Any, ...], dtype[Any]] | Categorical | @Todo | ndarray[tuple[Any, ...], Unknown]`
pandas/io/pytables.py:2841:20: error[invalid-return-type] Return type does not match returned value: expected `tuple[int, int, int]`, found `tuple[int, ...]`
pandas/io/pytables.py:3118:35: error[invalid-argument-type] Argument to bound method `write_array` is incorrect: Expected `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Index | Series`, found `Unknown | None`
pandas/io/pytables.py:3146:41: error[invalid-argument-type] Argument to bound method `write_array` is incorrect: Expected `ExtensionArray | ndarray[tuple[Any, ...], dtype[Any]] | Index | Series`, found `Unknown | None`
@ -958,34 +962,6 @@ pandas/plotting/_matplotlib/converter.py:182:21: warning[possibly-missing-attrib
pandas/plotting/_matplotlib/converter.py:227:9: error[invalid-method-override] Invalid override of method `convert`: Definition is incompatible with `DateConverter.convert`
pandas/plotting/_matplotlib/converter.py:236:16: error[no-matching-overload] No overload of function `to_offset` matches arguments
pandas/plotting/_matplotlib/converter.py:291:9: error[invalid-method-override] Invalid override of method `convert`: Definition is incompatible with `DateConverter.convert`
pandas/plotting/_matplotlib/converter.py:784:5: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["val"]` and value of type `ndarray[tuple[int], dtype[signedinteger[Any]]]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:785:14: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]] | tuple[ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]], ...], /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: SupportsIndex | tuple[SupportsIndex, ...], /) -> Any, (key: SupportsIndex | slice[Any, Any, Any] | EllipsisType | ... omitted 5 union elements, /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: str, /) -> ndarray[tuple[int], dtype[Any]], (key: list[str], /) -> ndarray[tuple[int], dtype[void]]]` cannot be called with key of type `Literal["val"]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:786:5: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["fmt"]` and value of type `Literal[""]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:788:16: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]] | tuple[ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]], ...], /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: SupportsIndex | tuple[SupportsIndex, ...], /) -> Any, (key: SupportsIndex | slice[Any, Any, Any] | EllipsisType | ... omitted 5 union elements, /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: str, /) -> ndarray[tuple[int], dtype[Any]], (key: list[str], /) -> ndarray[tuple[int], dtype[void]]]` cannot be called with key of type `Literal["maj"]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:789:16: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]] | tuple[ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]], ...], /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: SupportsIndex | tuple[SupportsIndex, ...], /) -> Any, (key: SupportsIndex | slice[Any, Any, Any] | EllipsisType | ... omitted 5 union elements, /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: str, /) -> ndarray[tuple[int], dtype[Any]], (key: list[str], /) -> ndarray[tuple[int], dtype[void]]]` cannot be called with key of type `Literal["fmt"]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:793:9: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["min"]` and value of type `Literal[True]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:810:9: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]] | tuple[ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]], ...], /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: SupportsIndex | tuple[SupportsIndex, ...], /) -> Any, (key: SupportsIndex | slice[Any, Any, Any] | EllipsisType | ... omitted 5 union elements, /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: str, /) -> ndarray[tuple[int], dtype[Any]], (key: list[str], /) -> ndarray[tuple[int], dtype[void]]]` cannot be called with key of type `Literal["fmt"]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:811:9: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["min"]` and value of type `Literal[True]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:818:9: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["min"]` and value of type `Literal[True]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:827:9: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]] | tuple[ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]], ...], /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: SupportsIndex | tuple[SupportsIndex, ...], /) -> Any, (key: SupportsIndex | slice[Any, Any, Any] | EllipsisType | ... omitted 5 union elements, /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: str, /) -> ndarray[tuple[int], dtype[Any]], (key: list[str], /) -> ndarray[tuple[int], dtype[void]]]` cannot be called with key of type `Literal["min"]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:837:9: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]] | tuple[ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]], ...], /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: SupportsIndex | tuple[SupportsIndex, ...], /) -> Any, (key: SupportsIndex | slice[Any, Any, Any] | EllipsisType | ... omitted 5 union elements, /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: str, /) -> ndarray[tuple[int], dtype[Any]], (key: list[str], /) -> ndarray[tuple[int], dtype[void]]]` cannot be called with key of type `Literal["min"]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:841:12: error[invalid-return-type] Return type does not match returned value: expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:854:5: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["val"]` and value of type `ndarray[tuple[int], dtype[signedinteger[Any]]]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:855:5: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["fmt"]` and value of type `Literal[""]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:856:14: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]] | tuple[ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]], ...], /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: SupportsIndex | tuple[SupportsIndex, ...], /) -> Any, (key: SupportsIndex | slice[Any, Any, Any] | EllipsisType | ... omitted 5 union elements, /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: str, /) -> ndarray[tuple[int], dtype[Any]], (key: list[str], /) -> ndarray[tuple[int], dtype[void]]]` cannot be called with key of type `Literal["val"]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:857:16: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]] | tuple[ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]], ...], /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: SupportsIndex | tuple[SupportsIndex, ...], /) -> Any, (key: SupportsIndex | slice[Any, Any, Any] | EllipsisType | ... omitted 5 union elements, /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: str, /) -> ndarray[tuple[int], dtype[Any]], (key: list[str], /) -> ndarray[tuple[int], dtype[void]]]` cannot be called with key of type `Literal["maj"]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:858:16: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]] | tuple[ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]], ...], /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: SupportsIndex | tuple[SupportsIndex, ...], /) -> Any, (key: SupportsIndex | slice[Any, Any, Any] | EllipsisType | ... omitted 5 union elements, /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: str, /) -> ndarray[tuple[int], dtype[Any]], (key: list[str], /) -> ndarray[tuple[int], dtype[void]]]` cannot be called with key of type `Literal["fmt"]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:863:9: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["min"]` and value of type `Literal[True]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:876:9: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["min"]` and value of type `Literal[True]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:886:9: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]] | tuple[ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]], ...], /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: SupportsIndex | tuple[SupportsIndex, ...], /) -> Any, (key: SupportsIndex | slice[Any, Any, Any] | EllipsisType | ... omitted 5 union elements, /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: str, /) -> ndarray[tuple[int], dtype[Any]], (key: list[str], /) -> ndarray[tuple[int], dtype[void]]]` cannot be called with key of type `Literal["min"]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:889:12: error[invalid-return-type] Return type does not match returned value: expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:901:5: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["val"]` and value of type `ndarray[tuple[int], dtype[signedinteger[Any]]]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:902:5: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["fmt"]` and value of type `Literal[""]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:903:14: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]] | tuple[ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]], ...], /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: SupportsIndex | tuple[SupportsIndex, ...], /) -> Any, (key: SupportsIndex | slice[Any, Any, Any] | EllipsisType | ... omitted 5 union elements, /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: str, /) -> ndarray[tuple[int], dtype[Any]], (key: list[str], /) -> ndarray[tuple[int], dtype[void]]]` cannot be called with key of type `Literal["val"]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:908:5: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]] | tuple[ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]], ...], /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: SupportsIndex | tuple[SupportsIndex, ...], /) -> Any, (key: SupportsIndex | slice[Any, Any, Any] | EllipsisType | ... omitted 5 union elements, /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: str, /) -> ndarray[tuple[int], dtype[Any]], (key: list[str], /) -> ndarray[tuple[int], dtype[void]]]` cannot be called with key of type `Literal["maj"]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:909:5: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]] | tuple[ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]], ...], /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: SupportsIndex | tuple[SupportsIndex, ...], /) -> Any, (key: SupportsIndex | slice[Any, Any, Any] | EllipsisType | ... omitted 5 union elements, /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: str, /) -> ndarray[tuple[int], dtype[Any]], (key: list[str], /) -> ndarray[tuple[int], dtype[void]]]` cannot be called with key of type `Literal["min"]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:910:5: error[invalid-argument-type] Method `__getitem__` of type `Overload[(key: ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]] | tuple[ndarray[tuple[Any, ...], dtype[integer[Any] | bool[bool]]], ...], /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: SupportsIndex | tuple[SupportsIndex, ...], /) -> Any, (key: SupportsIndex | slice[Any, Any, Any] | EllipsisType | ... omitted 5 union elements, /) -> ndarray[tuple[Any, ...], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]], (key: str, /) -> ndarray[tuple[int], dtype[Any]], (key: list[str], /) -> ndarray[tuple[int], dtype[void]]]` cannot be called with key of type `Literal["fmt"]` on object of type `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:912:12: error[invalid-return-type] Return type does not match returned value: expected `ndarray[tuple[Any, ...], dtype[Any]]`, found `ndarray[tuple[int], list[Unknown | tuple[str, <class 'int'>] | tuple[str, <class 'bool'>] | tuple[str, str]]]`
pandas/plotting/_matplotlib/converter.py:932:30: warning[possibly-missing-attribute] Submodule `ticker` may not be available as an attribute on module `matplotlib`
pandas/plotting/_matplotlib/converter.py:1013:16: warning[possibly-missing-attribute] Submodule `transforms` may not be available as an attribute on module `matplotlib`
pandas/plotting/_matplotlib/converter.py:1021:32: warning[possibly-missing-attribute] Submodule `ticker` may not be available as an attribute on module `matplotlib`
@ -1028,4 +1004,4 @@ pandas/util/_exceptions.py:45:15: error[no-matching-overload] No overload of fun
pandas/util/_print_versions.py:29:14: error[unresolved-import] Cannot resolve imported module `pandas._version_meson`
pandas/util/_validators.py:388:33: error[invalid-argument-type] Argument to function `validate_bool_kwarg` is incorrect: Argument type `object` does not satisfy constraints (`bool`, `int`, `None`) of type variable `BoolishNoneT`
typings/numba.pyi:24:21: error[unresolved-attribute] Module `numba` has no member `compiler`
Found 1030 diagnostics
Found 1006 diagnostics

View File

@ -1,5 +1,7 @@
ERROR src/prefect/concurrency/_leases.py:116:10-28: Cannot use `AsyncCancelScope` as a context manager [bad-context-manager]
ERROR src/prefect/concurrency/_leases.py:116:10-28: Cannot use `AsyncCancelScope` as a context manager [bad-context-manager]
ERROR src/prefect/concurrency/v1/sync.py:58:74-81: Unexpected keyword argument `_sync` in function `prefect.concurrency.v1._asyncio.acquire_concurrency_slots` [unexpected-keyword]
ERROR src/prefect/concurrency/v1/sync.py:70:67-74: Unexpected keyword argument `_sync` in function `prefect.concurrency.v1._asyncio.release_concurrency_slots` [unexpected-keyword]
ERROR src/prefect/events/actions.py:27:5-9: Class member `DoNothing.type` overrides parent class `Action` in an inconsistent manner [bad-override]
ERROR src/prefect/events/actions.py:63:5-9: Class member `RunDeployment.type` overrides parent class `DeploymentAction` in an inconsistent manner [bad-override]
ERROR src/prefect/events/actions.py:91:5-9: Class member `PauseDeployment.type` overrides parent class `DeploymentAction` in an inconsistent manner [bad-override]
@ -110,6 +112,7 @@ ERROR src/prefect/server/models/deployments.py:1146:34-45: Argument `datetime` i
ERROR src/prefect/server/models/deployments.py:1192:24-51: Cannot use `PrefectServerEventsClient` as a context manager [bad-context-manager]
ERROR src/prefect/server/models/deployments.py:1199:38-48: Argument `datetime` is not assignable to parameter `occurred` with type `DateTime` in function `prefect.server.models.events.deployment_status_event` [bad-argument-type]
ERROR src/prefect/server/models/events.py:23:30-75: Could not import `PREFECT_API_EVENTS_RELATED_RESOURCE_CACHE_TTL` from `prefect.settings` [missing-module-attribute]
ERROR src/prefect/server/models/events.py:82:12-30: Argument `UUID | None` is not assignable to parameter `id` with type `UUID | str` in function `prefect.server.events.schemas.events.Event.__init__` [bad-argument-type]
ERROR src/prefect/server/models/flow_run_input.py:91:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute]
ERROR src/prefect/server/models/flow_run_states.py:79:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute]
ERROR src/prefect/server/models/flow_runs.py:47:5-45: Could not import `PREFECT_API_MAX_FLOW_RUN_GRAPH_ARTIFACTS` from `prefect.settings` [missing-module-attribute]
@ -154,9 +157,9 @@ ERROR src/prefect/server/models/workers.py:328:26-42: Argument `datetime | None`
ERROR src/prefect/server/models/workers.py:329:25-40: Argument `datetime | None` is not assignable to parameter `scheduled_after` with type `DateTime | None` in function `prefect.server.database.query_components.BaseQueryComponents.get_scheduled_flow_runs_from_work_pool` [bad-argument-type]
ERROR src/prefect/server/models/workers.py:626:15-30: Object of class `Result` has no attribute `rowcount` [missing-attribute]
ERROR src/prefect/server/models/workers.py:672:12-18: Module `sqlalchemy.exc` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR src/prefect/server/models/workers.py:755:55-81: Cannot set item in `dict[str, WorkerStatus | datetime]` [unsupported-operation]
ERROR src/prefect/server/models/workers.py:755:55-81: `int` is not assignable to TypedDict key `heartbeat_interval_seconds` with type `WorkerStatus | datetime` [bad-typed-dict-key]
ERROR src/prefect/server/models/workers.py:770:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute]
ERROR src/prefect/server/models/workers.py:799:12-27: Object of class `Result` has no attribute `rowcount` [missing-attribute]
ERROR src/prefect/server/models/workers.py:811:16-43: Cannot use `PrefectServerEventsClient` as a context manager [bad-context-manager]
INFO Checking project configured at `<CWD>/pyrefly.toml`
INFO 159 errors (12 suppressed)
INFO 162 errors (12 suppressed)

View File

@ -29,6 +29,7 @@ src/prefect/events/utilities.py:96:27: error[invalid-argument-type] Argument is
src/prefect/events/worker.py:74:9: error[invalid-method-override] Invalid override of method `_prepare_item`: Definition is incompatible with `QueueService._prepare_item`
src/prefect/events/worker.py:78:15: error[invalid-method-override] Invalid override of method `_handle`: Definition is incompatible with `QueueService._handle`
src/prefect/events/worker.py:100:9: error[invalid-method-override] Invalid override of method `instance`: Definition is incompatible with `_QueueServiceBase.instance`
src/prefect/events/worker.py:130:16: error[invalid-return-type] Return type does not match returned value: expected `Self@instance`, found `EventsWorker`
src/prefect/input/actions.py:46:49: warning[deprecated] The function `json` is deprecated: The `json` method is deprecated; use `model_dump_json` instead.
src/prefect/server/models/artifacts.py:449:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount`
src/prefect/server/models/artifacts.py:449:39: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount`
@ -77,6 +78,8 @@ src/prefect/server/models/flow_runs.py:251:26: error[invalid-type-form] Variable
src/prefect/server/models/flow_runs.py:252:26: error[invalid-type-form] Variable of type `type[TaskRun]` is not allowed in a type expression
src/prefect/server/models/flow_runs.py:322:41: error[invalid-argument-type] Argument to function `load_only` is incorrect: Expected `Literal["*"] | QueryableAttribute[Any]`, found `str`
src/prefect/server/models/flow_runs.py:504:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount`
src/prefect/server/models/flow_runs.py:582:15: error[missing-argument] No argument provided for required parameter `db`
src/prefect/server/models/flow_runs.py:582:15: error[missing-argument] No argument provided for required parameter `db`
src/prefect/server/models/flow_runs.py:685:19: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount`
src/prefect/server/models/flows.py:83:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount`
src/prefect/server/models/flows.py:290:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount`
@ -85,6 +88,8 @@ src/prefect/server/models/saved_searches.py:146:12: error[unresolved-attribute]
src/prefect/server/models/task_run_states.py:74:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount`
src/prefect/server/models/task_runs.py:176:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount`
src/prefect/server/models/task_runs.py:462:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount`
src/prefect/server/models/task_runs.py:535:15: error[missing-argument] No argument provided for required parameter `db`
src/prefect/server/models/task_runs.py:535:15: error[missing-argument] No argument provided for required parameter `db`
src/prefect/server/models/task_workers.py:71:13: error[invalid-argument-type] Argument is incorrect: Expected `DateTime`, found `datetime`
src/prefect/server/models/variables.py:123:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount`
src/prefect/server/models/variables.py:140:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount`
@ -133,4 +138,4 @@ src/prefect/server/models/workers.py:672:12: warning[possibly-missing-attribute]
src/prefect/server/models/workers.py:755:9: error[invalid-assignment] Invalid subscript assignment with key of type `Literal["heartbeat_interval_seconds"]` and value of type `int` on object of type `dict[str, datetime | WorkerStatus]`
src/prefect/server/models/workers.py:770:12: error[unresolved-attribute] Object of type `Result[Unknown]` has no attribute `rowcount`
src/prefect/server/models/workers.py:799:12: error[unresolved-attribute] Object of type `Result[Any]` has no attribute `rowcount`
Found 135 diagnostics
Found 140 diagnostics

View File

@ -1,3 +1,16 @@
ERROR torch/__init__.py:67:5-17: Name `BoolTensor` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/__init__.py:69:5-17: Name `ByteTensor` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/__init__.py:71:5-17: Name `CharTensor` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/__init__.py:73:5-19: Name `DoubleTensor` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/__init__.py:75:5-18: Name `FloatTensor` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/__init__.py:78:5-16: Name `IntTensor` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/__init__.py:80:5-17: Name `LongTensor` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/__init__.py:82:5-18: Name `ShortTensor` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/__init__.py:91:5-12: Name `chunk` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/__init__.py:110:5-13: Name `matmul` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/__init__.py:112:5-11: Name `rand` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/__init__.py:113:5-12: Name `randn` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/__init__.py:124:5-12: Name `stack` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/__init__.py:291:5-51: Could not find import of `torch.version` [missing-import]
ERROR torch/__init__.py:1018:12-24: No attribute `tensor` in module `torch` [missing-attribute]
ERROR torch/__init__.py:1025:26-40: Could not import `_initExtension` from `torch._C` [missing-module-attribute]
@ -112,6 +125,7 @@ ERROR torch/_VF.py:25:19-46: No attribute `_VariableFunctions` in module `torch.
ERROR torch/__config__.py:9:12-33: No attribute `_show_config` in module `torch._C` [missing-attribute]
ERROR torch/__config__.py:17:12-31: No attribute `_cxx_flags` in module `torch._C` [missing-attribute]
ERROR torch/__config__.py:22:12-35: No attribute `_parallel_info` in module `torch._C` [missing-attribute]
ERROR torch/_awaits/__init__.py:7:12-19: Name `Await` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/_awaits/__init__.py:14:14-29: No attribute `_Await` in module `torch._C` [missing-attribute]
ERROR torch/_classes.py:12:9-20: Class member `_ClassNamespace.__getattr__` overrides parent class `ModuleType` in an inconsistent manner [bad-param-name-override]
ERROR torch/_classes.py:13:17-58: No attribute `_get_custom_class_python_wrapper` in module `torch._C` [missing-attribute]
@ -565,7 +579,6 @@ ERROR torch/_dynamo/aot_compile.py:227:13-29: Module `torch._functorch` exists,
ERROR torch/_dynamo/aot_compile.py:227:13-36: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/aot_compile_types.py:49:14-30: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/aot_compile_types.py:49:14-37: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/backends/common.py:73:20-22: Returned type `GraphModule` is not assignable to declared return type `(...) -> Any` [bad-return]
ERROR torch/_dynamo/backends/common.py:166:58-70: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/_dynamo/backends/common.py:170:12-24: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/_dynamo/backends/common.py:173:57-68: No attribute `dtype` in module `torch` [missing-attribute]
@ -646,10 +659,6 @@ ERROR torch/_dynamo/convert_frame.py:345:21-65: No attribute `_unset_default_mob
ERROR torch/_dynamo/convert_frame.py:347:26-55: No attribute `DisableTorchFunction` in module `torch._C` [missing-attribute]
ERROR torch/_dynamo/convert_frame.py:349:17-52: No attribute `_set_fp32_precision_setter` in module `torch._C` [missing-attribute]
ERROR torch/_dynamo/convert_frame.py:667:9-671:43: `FrameType | None` is not assignable to `FrameType` (caused by inconsistent types when breaking cycles) [bad-assignment]
ERROR torch/_dynamo/convert_frame.py:1034:23-69: `((...) -> Any) | GraphModule` is not assignable to variable `compiled_fn` with type `((...) -> Any) | None` [bad-assignment]
ERROR torch/_dynamo/convert_frame.py:1035:57-68: Argument `((...) -> Any) | None` is not assignable to parameter `compiled_fn` with type `(...) -> Any` in function `GraphRuntimeEnv.forward_callable` [bad-argument-type]
ERROR torch/_dynamo/convert_frame.py:1206:25-43: Argument `(gm: GraphModule, example_inputs: list[Tensor]) -> GraphModule` is not assignable to parameter `compiler_fn` with type `(GraphModule, list[Tensor]) -> CompiledFn` in function `compile_frame` [bad-argument-type]
ERROR torch/_dynamo/convert_frame.py:1870:13-20: Argument `WrapBackendDebug` is not assignable to parameter `compiler_fn` with type `(GraphModule, list[Tensor]) -> CompiledFn` in function `convert_frame` [bad-argument-type]
ERROR torch/_dynamo/create_parameter_op.py:43:35-46: No attribute `dtype` in module `torch` [missing-attribute]
ERROR torch/_dynamo/create_parameter_op.py:43:56-68: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/_dynamo/create_parameter_op.py:47:9-20: No attribute `empty` in module `torch` [missing-attribute]
@ -712,12 +721,7 @@ ERROR torch/_dynamo/device_interface.py:572:24-36: No attribute `device` in modu
ERROR torch/_dynamo/device_interface.py:574:27-39: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/_dynamo/device_interface.py:579:49-61: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/_dynamo/device_interface.py:580:27-39: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/_dynamo/eval_frame.py:210:49-81: Argument `WrapBackendDebug` is not assignable to parameter `compiler_fn` with type `(GraphModule, list[Tensor]) -> CompiledFn` in function `_create_wrapped_callback` [bad-argument-type]
ERROR torch/_dynamo/eval_frame.py:316:49-61: Argument `WrapBackendDebug` is not assignable to parameter `compiler_fn` with type `(GraphModule, list[Tensor]) -> CompiledFn` in function `_create_wrapped_callback` [bad-argument-type]
ERROR torch/_dynamo/eval_frame.py:357:12-28: Module `torch._C._dynamo` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/eval_frame.py:401:39-44: Runtime checkable protocol `Sized` has an unsafe overlap with type `Module` [invalid-argument]
ERROR torch/_dynamo/eval_frame.py:410:44-67: Argument `BoundMethod[Module, (...) -> Any]` is not assignable to parameter `fn` with type `(...) -> Any` in function `DisableContext.__call__` [bad-argument-type]
ERROR torch/_dynamo/eval_frame.py:421:71-85: Argument `Module` is not assignable to parameter `fn` with type `(ParamSpec(@_)) -> @_` in function `torch._dynamo.external_utils.wrap_inline` [bad-argument-type]
ERROR torch/_dynamo/eval_frame.py:527:9-20: Class member `OptimizedModule.__setattr__` overrides parent class `Module` in an inconsistent manner [bad-param-name-override]
ERROR torch/_dynamo/eval_frame.py:868:26-46: No attribute `_is_tracing` in module `torch._C` [missing-attribute]
ERROR torch/_dynamo/eval_frame.py:876:39-52: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
@ -725,18 +729,13 @@ ERROR torch/_dynamo/eval_frame.py:914:21-40: Module `torch._C._functorch` exists
ERROR torch/_dynamo/eval_frame.py:940:21-40: Module `torch._C._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/eval_frame.py:1057:23-54: Module `torch._dynamo.compiled_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/eval_frame.py:1429:5-33: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute]
ERROR torch/_dynamo/eval_frame.py:1464:13-20: Argument `WrapBackendDebug` is not assignable to parameter `compiler_fn` with type `(GraphModule, list[Tensor]) -> CompiledFn` in function `torch._dynamo.convert_frame.convert_frame` [bad-argument-type]
ERROR torch/_dynamo/eval_frame.py:1739:9-30: No attribute `ScriptObject` in module `torch._C` [missing-attribute]
ERROR torch/_dynamo/eval_frame.py:1954:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute]
ERROR torch/_dynamo/eval_frame.py:2228:22-40: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/eval_frame.py:2345:13-20: Argument `WrapBackendDebug` is not assignable to parameter `compiler_fn` with type `(GraphModule, list[Tensor]) -> CompiledFn` in function `torch._dynamo.convert_frame.convert_frame_assert` [bad-argument-type]
ERROR torch/_dynamo/exc.py:388:35-43: Cannot index into `dict[type[AttributeError] | type[GeneratorExit] | type[IndexError] | type[KeyError] | type[LookupError] | type[NotImplementedError] | type[RuntimeError] | type[StopIteration] | type[TypeError], type[ObservedAttributeError] | type[ObservedGeneratorExit] | type[ObservedIndexError] | type[ObservedKeyError] | type[ObservedLookupError] | type[ObservedNotImplementedError] | type[ObservedRuntimeError] | type[ObservedTypeError] | type[ObservedUserStopIteration]]` [bad-index]
ERROR torch/_dynamo/functional_export.py:348:9-17: Class member `DynamoGraphTransformer.run_node` overrides parent class `Transformer` in an inconsistent manner [bad-param-name-override]
ERROR torch/_dynamo/functional_export.py:374:70-377:18: Cannot index into `Module` [bad-index]
ERROR torch/_dynamo/functional_export.py:381:55-384:18: Cannot index into `Module` [bad-index]
ERROR torch/_dynamo/functional_export.py:521:34-48: `tuple[Unknown, ...]` is not assignable to attribute `gm_inputs` with type `None` [bad-assignment]
ERROR torch/_dynamo/functional_export.py:535:9-20: Argument `pytreeify.InShuffle` is not assignable to parameter `f` with type `(...) -> Unknown` in function `torch.fx.experimental.proxy_tensor.make_fx` [bad-argument-type]
ERROR torch/_dynamo/functional_export.py:580:13-24: Argument `pytreeify.OutShuffle` is not assignable to parameter `f` with type `(...) -> Unknown` in function `torch.fx.experimental.proxy_tensor.make_fx` [bad-argument-type]
ERROR torch/_dynamo/functional_export.py:800:43-63: Module `torch._dynamo.source` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/graph_region_tracker.py:55:5-16: No attribute `dtype` in module `torch` [missing-attribute]
ERROR torch/_dynamo/graph_region_tracker.py:155:9-30: No attribute `is_grad_enabled` in module `torch` [missing-attribute]
@ -880,13 +879,10 @@ ERROR torch/_dynamo/repro/after_aot.py:42:5-63: Could not find import of `triton
ERROR torch/_dynamo/repro/after_aot.py:43:5-47: Could not find import of `triton.runtime.jit` [missing-import]
ERROR torch/_dynamo/repro/after_aot.py:507:25-46: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/repro/after_aot.py:507:25-62: Module `torch.fx.experimental._backward_state` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/repro/after_aot.py:789:19-22: Argument `Module` is not assignable to parameter `f` with type `(...) -> Unknown` in function `torch.fx.experimental.proxy_tensor.make_fx` [bad-argument-type]
ERROR torch/_dynamo/repro/after_aot.py:792:5-27: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/repro/after_aot.py:883:14-40: Module `torch.utils._content_store` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/repro/after_aot.py:886:14-40: Module `torch.utils._content_store` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/repro/after_dynamo.py:231:42-67: No attribute `is_autocast_enabled` in module `torch` [missing-attribute]
ERROR torch/_dynamo/repro/after_dynamo.py:474:63-66: Argument `Module` is not assignable to parameter `fn` with type `(...) -> Any` in function `torch._dynamo.eval_frame._NullDecorator.__call__` [bad-argument-type]
ERROR torch/_dynamo/repro/after_dynamo.py:481:55-58: Argument `Module` is not assignable to parameter `fn` with type `(...) -> Any` in function `torch._dynamo.eval_frame._NullDecorator.__call__` [bad-argument-type]
ERROR torch/_dynamo/repro/aoti.py:305:5-27: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/side_effects.py:724:26-50: Module `torch._dynamo.variables.torch_function` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/side_effects.py:958:22-46: Module `torch._dynamo.variables.torch_function` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
@ -1128,7 +1124,7 @@ ERROR torch/_dynamo/variables/builder.py:2791:14-51: No attribute `DisableTorchF
ERROR torch/_dynamo/variables/builder.py:2864:17-40: Module `torch._dynamo.variables` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/variables/builder.py:2865:17-40: Module `torch._dynamo.variables` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/variables/builder.py:2910:22-59: No attribute `DisableTorchFunctionSubclass` in module `torch._C` [missing-attribute]
ERROR torch/_dynamo/variables/builder.py:2924:68-76: Unpacked keyword argument `bool` is not assignable to parameter `source` with type `Source | None` in function `wrap_to_fake_tensor_and_record` [bad-argument-type]
ERROR torch/_dynamo/variables/builder.py:2924:52-77: Missing argument `source` in function `wrap_to_fake_tensor_and_record` [missing-argument]
ERROR torch/_dynamo/variables/builder.py:3001:52-70: No attribute `Generator` in module `torch._C` [missing-attribute]
ERROR torch/_dynamo/variables/builder.py:3006:30-56: No attribute `_DisableFuncTorch` in module `torch._C` [missing-attribute]
ERROR torch/_dynamo/variables/builder.py:3010:32-42: No attribute `Size` in module `torch` [missing-attribute]
@ -1277,6 +1273,7 @@ ERROR torch/_dynamo/variables/ctx_manager.py:951:17-35: Module `torch._C._autogr
ERROR torch/_dynamo/variables/ctx_manager.py:955:13-31: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/variables/ctx_manager.py:959:34-52: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/variables/ctx_manager.py:961:13-31: Module `torch._C._autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
WARN torch/_dynamo/variables/ctx_manager.py:996:41-64: Identity comparison between an instance of `autocast` and class `autocast` is always False [unnecessary-comparison]
ERROR torch/_dynamo/variables/ctx_manager.py:1091:9-20: Class member `ProfilerContextVariable.reconstruct` overrides parent class `ContextWrappingVariable` in an inconsistent manner [bad-param-name-override]
ERROR torch/_dynamo/variables/ctx_manager.py:1367:29-47: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_dynamo/variables/ctx_manager.py:1368:29-47: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
@ -1449,6 +1446,7 @@ ERROR torch/_dynamo/variables/misc.py:594:60-71: Argument `Source | None` is not
ERROR torch/_dynamo/variables/misc.py:597:9-22: Class member `ComptimeVariable.call_function` overrides parent class `VariableTracker` in an inconsistent manner [bad-override]
ERROR torch/_dynamo/variables/misc.py:629:23-40: Object of class `VariableTracker` has no attribute `items` [missing-attribute]
ERROR torch/_dynamo/variables/misc.py:673:5-38: Object of class `FunctionType` has no attribute `_origin` [missing-attribute]
WARN torch/_dynamo/variables/misc.py:704:52-57: Identity comparison `True is False` is always False [unnecessary-comparison]
ERROR torch/_dynamo/variables/misc.py:791:37-52: Object of class `Signature` has no attribute `_parameters` [missing-attribute]
ERROR torch/_dynamo/variables/misc.py:819:32-43: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type]
ERROR torch/_dynamo/variables/misc.py:864:25-865:44: Class `VariableTracker` has no class attribute `create_with_source`
@ -1477,7 +1475,6 @@ ERROR torch/_dynamo/variables/misc.py:2071:9-14: Class member `WeakRefVariable.b
ERROR torch/_dynamo/variables/misc.py:2087:9-22: Class member `WeakRefVariable.call_function` overrides parent class `VariableTracker` in an inconsistent manner [bad-override]
ERROR torch/_dynamo/variables/nn_module.py:210:57-68: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.GetItemSource.__init__` [bad-argument-type]
ERROR torch/_dynamo/variables/nn_module.py:237:39-50: Argument `Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.AttrSource.__init__` [bad-argument-type]
ERROR torch/_dynamo/variables/nn_module.py:319:63-72: Unpacked keyword argument `AttrSource` is not assignable to parameter `source_fn` with type `((...) -> Any) | None` in function `torch._dynamo.variables.functions.UserMethodVariable.__init__` [bad-argument-type]
ERROR torch/_dynamo/variables/nn_module.py:383:45-51: `subobj` may be uninitialized [unbound-name]
ERROR torch/_dynamo/variables/nn_module.py:383:68-74: Argument `AttrSource | Source | None` is not assignable to parameter `base` with type `Source` in function `torch._dynamo.source.NNModuleSource.__init__` [bad-argument-type]
ERROR torch/_dynamo/variables/nn_module.py:395:23-29: `subobj` may be uninitialized [unbound-name]
@ -2229,8 +2226,6 @@ ERROR torch/_export/wrappers.py:306:13-53: No attribute `_dispatch_tls_local_exc
ERROR torch/_export/wrappers.py:307:15-38: No attribute `DispatchKeySet` in module `torch._C` [missing-attribute]
ERROR torch/_export/wrappers.py:307:39-59: No attribute `DispatchKey` in module `torch._C` [missing-attribute]
ERROR torch/_export/wrappers.py:310:14-45: No attribute `_ForceDispatchKeyGuard` in module `torch._C` [missing-attribute]
ERROR torch/_functorch/_activation_checkpointing/graph_info_provider.py:256:9-68: Could not find import of `matplotlib` [missing-import]
ERROR torch/_functorch/_activation_checkpointing/knapsack.py:34:9-66: Could not find import of `scipy.optimize` [missing-import]
ERROR torch/_functorch/_activation_checkpointing/knapsack.py:71:24-36: No attribute `tensor` in module `torch` [missing-attribute]
ERROR torch/_functorch/_activation_checkpointing/knapsack.py:72:47-57: No attribute `long` in module `torch` [missing-attribute]
ERROR torch/_functorch/_activation_checkpointing/knapsack.py:74:16-28: No attribute `tensor` in module `torch` [missing-attribute]
@ -2306,7 +2301,6 @@ ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1075:37-57: No at
ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1092:38-66: Module `torch.utils._python_dispatch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1093:17-47: No attribute `_TorchDispatchModeKey` in module `torch._C` [missing-attribute]
ERROR torch/_functorch/_aot_autograd/graph_capture_wrappers.py:1140:36-48: No attribute `tensor` in module `torch` [missing-attribute]
ERROR torch/_functorch/_aot_autograd/graph_compile.py:276:19-24: Argument `GraphModule` is not assignable to parameter `compiled_fn` with type `(...) -> Unknown` in function `torch._functorch._aot_autograd.runtime_wrappers.post_compile` [bad-argument-type]
ERROR torch/_functorch/_aot_autograd/graph_compile.py:368:32-48: Module `torch._functorch` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_functorch/_aot_autograd/graph_compile.py:368:32-55: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_functorch/_aot_autograd/graph_compile.py:510:19-52: No attribute `_is_any_autocast_enabled` in module `torch._C` [missing-attribute]
@ -2334,7 +2328,6 @@ ERROR torch/_functorch/_aot_autograd/graph_compile.py:1669:16-32: Module `torch.
ERROR torch/_functorch/_aot_autograd/graph_compile.py:1669:16-39: Module `torch._functorch.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_functorch/_aot_autograd/graph_compile.py:1819:61-86: No attribute `_DisableAutocast` in module `torch._C` [missing-attribute]
ERROR torch/_functorch/_aot_autograd/graph_compile.py:1943:16-47: Module `torch._dynamo.compiled_autograd` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_functorch/_aot_autograd/graph_compile.py:1952:17-26: Argument `GraphModule` is not assignable to parameter `bw_module` with type `(...) -> Unknown` in function `torch._functorch._aot_autograd.runtime_wrappers.AutogradLazyBackwardCompileInfo.__init__` [bad-argument-type]
ERROR torch/_functorch/_aot_autograd/graph_compile.py:2069:19-52: No attribute `_is_any_autocast_enabled` in module `torch._C` [missing-attribute]
ERROR torch/_functorch/_aot_autograd/graph_compile.py:2248:13-38: No attribute `_DisableAutocast` in module `torch._C` [missing-attribute]
ERROR torch/_functorch/_aot_autograd/graph_compile.py:2249:16-49: No attribute `_is_any_autocast_enabled` in module `torch._C` [missing-attribute]
@ -2462,18 +2455,10 @@ ERROR torch/_functorch/compilers.py:48:29-60: No attribute `_jit_set_autocast_mo
ERROR torch/_functorch/compilers.py:52:9-40: No attribute `_jit_set_autocast_mode` in module `torch._C` [missing-attribute]
ERROR torch/_functorch/compilers.py:82:34-46: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/_functorch/compilers.py:93:9-43: No attribute `_jit_pass_remove_mutation` in module `torch._C` [missing-attribute]
ERROR torch/_functorch/compilers.py:99:12-13: Returned type `ScriptModule` is not assignable to declared return type `(...) -> Unknown` [bad-return]
ERROR torch/_functorch/compilers.py:122:12-16: Returned type `GraphModule` is not assignable to declared return type `(...) -> Unknown` [bad-return]
ERROR torch/_functorch/compilers.py:126:9-12: Class member `DebugInterpreter.run` overrides parent class `Interpreter` in an inconsistent manner [bad-override]
ERROR torch/_functorch/compilers.py:127:44-55: Argument `Module` is not assignable to parameter `gm` with type `GraphModule` in function `torch.fx.experimental.symbolic_shapes.bind_symbols` [bad-argument-type]
ERROR torch/_functorch/compilers.py:228:45-67: Argument `set[OpOverload[Ellipsis, Any] | OpOverloadPacket[Ellipsis, Any]]` is not assignable to parameter `aten_ops` with type `Sequence[OpOverloadPacket[Ellipsis, Any] | OperatorBase]` in function `torch._decomp.get_decompositions` [bad-argument-type]
ERROR torch/_functorch/compilers.py:273:33-41: Unpacked keyword argument `((joint_module: GraphModule, _joint_inputs: Unknown, compiler: str | Unknown = 'inductor', *, num_fwd_outputs: Unknown, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | dict[OperatorBase, (...) -> Unknown] | set[OpOverload[Ellipsis, Any] | OpOverloadPacket[Ellipsis, Any]] | Unknown` is not assignable to parameter `fw_compiler` with type `(...) -> Unknown` in function `torch._functorch.aot_autograd.aot_function` [bad-argument-type]
ERROR torch/_functorch/compilers.py:273:33-41: Unpacked keyword argument `((joint_module: GraphModule, _joint_inputs: Unknown, compiler: str | Unknown = 'inductor', *, num_fwd_outputs: Unknown, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | dict[OperatorBase, (...) -> Unknown] | set[OpOverload[Ellipsis, Any] | OpOverloadPacket[Ellipsis, Any]] | Unknown` is not assignable to parameter `bw_compiler` with type `((...) -> Unknown) | None` in function `torch._functorch.aot_autograd.aot_function` [bad-argument-type]
ERROR torch/_functorch/compilers.py:273:33-41: Unpacked keyword argument `((joint_module: GraphModule, _joint_inputs: Unknown, compiler: str | Unknown = 'inductor', *, num_fwd_outputs: Unknown, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | dict[OperatorBase, (...) -> Unknown] | set[OpOverload[Ellipsis, Any] | OpOverloadPacket[Ellipsis, Any]] | Unknown` is not assignable to parameter `partition_fn` with type `(...) -> Unknown` in function `torch._functorch.aot_autograd.aot_function` [bad-argument-type]
ERROR torch/_functorch/compilers.py:273:33-41: Unpacked keyword argument `((joint_module: GraphModule, _joint_inputs: Unknown, compiler: str | Unknown = 'inductor', *, num_fwd_outputs: Unknown, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | dict[OperatorBase, (...) -> Unknown] | set[OpOverload[Ellipsis, Any] | OpOverloadPacket[Ellipsis, Any]] | Unknown` is not assignable to parameter `decompositions` with type `dict[Unknown, Unknown] | None` in function `torch._functorch.aot_autograd.aot_function` [bad-argument-type]
ERROR torch/_functorch/compilers.py:273:33-41: Unpacked keyword argument `((joint_module: GraphModule, _joint_inputs: Unknown, compiler: str | Unknown = 'inductor', *, num_fwd_outputs: Unknown, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | dict[OperatorBase, (...) -> Unknown] | set[OpOverload[Ellipsis, Any] | OpOverloadPacket[Ellipsis, Any]] | Unknown` is not assignable to parameter `num_params_buffers` with type `int` in function `torch._functorch.aot_autograd.aot_function` [bad-argument-type]
ERROR torch/_functorch/compilers.py:273:33-41: Unpacked keyword argument `((joint_module: GraphModule, _joint_inputs: Unknown, compiler: str | Unknown = 'inductor', *, num_fwd_outputs: Unknown, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | dict[OperatorBase, (...) -> Unknown] | set[OpOverload[Ellipsis, Any] | OpOverloadPacket[Ellipsis, Any]] | Unknown` is not assignable to parameter `keep_inference_input_mutations` with type `bool` in function `torch._functorch.aot_autograd.aot_function` [bad-argument-type]
ERROR torch/_functorch/compilers.py:273:33-41: Unpacked keyword argument `((joint_module: GraphModule, _joint_inputs: Unknown, compiler: str | Unknown = 'inductor', *, num_fwd_outputs: Unknown, static_lifetime_input_indices: list[int] | None = None) -> tuple[GraphModule, GraphModule]) | dict[OperatorBase, (...) -> Unknown] | set[OpOverload[Ellipsis, Any] | OpOverloadPacket[Ellipsis, Any]] | Unknown` is not assignable to parameter `inference_compiler` with type `((...) -> Unknown) | None` in function `torch._functorch.aot_autograd.aot_function` [bad-argument-type]
ERROR torch/_functorch/compilers.py:273:33-41: Argument `dict[OperatorBase, (...) -> Unknown] | set[OpOverload[Ellipsis, Any] | OpOverloadPacket[Ellipsis, Any]]` is not assignable to parameter `decompositions` with type `dict[Unknown, Unknown] | None` in function `torch._functorch.aot_autograd.aot_function` [bad-argument-type]
ERROR torch/_functorch/compilers.py:298:5-29: Could not find import of `foo` [missing-import]
ERROR torch/_functorch/compilers.py:319:30-41: No attribute `rand` in module `random` [missing-attribute]
ERROR torch/_functorch/compilers.py:323:21-30: No attribute `int` in module `torch` [missing-attribute]
@ -2565,7 +2550,6 @@ ERROR torch/_functorch/partitioners.py:1456:26-38: Module `torch._prims` exists,
ERROR torch/_functorch/partitioners.py:1477:21-33: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/_functorch/partitioners.py:1484:18-40: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_functorch/partitioners.py:2072:12-17: Could not find import of `pydot` [missing-import]
ERROR torch/_functorch/partitioners.py:2558:16-40: Could not find import of `matplotlib.pyplot` [missing-import]
ERROR torch/_functorch/partitioners.py:2662:34-46: No attribute `tensor` in module `torch` [missing-attribute]
ERROR torch/_functorch/partitioners.py:2670:35-47: No attribute `argmin` in module `torch` [missing-attribute]
ERROR torch/_functorch/predispatch.py:17:5-48: Could not import `_remove_batch_dim` from `torch._C._functorch` [missing-module-attribute]
@ -2600,7 +2584,6 @@ ERROR torch/_higher_order_ops/associative_scan.py:384:13-22: No attribute `cat`
ERROR torch/_higher_order_ops/associative_scan.py:673:35-75: No attribute `_dispatch_tls_local_include_set` in module `torch._C` [missing-attribute]
ERROR torch/_higher_order_ops/associative_scan.py:674:35-75: No attribute `_dispatch_tls_local_exclude_set` in module `torch._C` [missing-attribute]
ERROR torch/_higher_order_ops/associative_scan.py:676:14-49: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute]
ERROR torch/_higher_order_ops/associative_scan.py:736:46-62: Argument `GraphModule` is not assignable to parameter `func` with type `(...) -> Unknown` in function `torch._functorch.apis.vmap` [bad-argument-type]
ERROR torch/_higher_order_ops/associative_scan.py:742:32-47: No attribute `ones_like` in module `torch` [missing-attribute]
ERROR torch/_higher_order_ops/associative_scan.py:756:29-39: No attribute `tril` in module `torch` [missing-attribute]
ERROR torch/_higher_order_ops/associative_scan.py:757:21-31: No attribute `ones` in module `torch` [missing-attribute]
@ -2688,7 +2671,6 @@ ERROR torch/_higher_order_ops/flex_attention.py:454:48-57: No attribute `int` in
ERROR torch/_higher_order_ops/flex_attention.py:516:73-86: No attribute `float32` in module `torch` [missing-attribute]
ERROR torch/_higher_order_ops/flex_attention.py:517:74-87: No attribute `float32` in module `torch` [missing-attribute]
ERROR torch/_higher_order_ops/flex_attention.py:561:28-47: No attribute `empty_strided` in module `torch` [missing-attribute]
ERROR torch/_higher_order_ops/flex_attention.py:625:16-38: Returned type `tuple[(...) -> Unknown, GraphModule]` is not assignable to declared return type `tuple[(...) -> Unknown, (...) -> Unknown]` [bad-return]
ERROR torch/_higher_order_ops/flex_attention.py:658:14-49: No attribute `_AutoDispatchBelowAutograd` in module `torch._C` [missing-attribute]
ERROR torch/_higher_order_ops/flex_attention.py:789:12-33: No attribute `is_grad_enabled` in module `torch` [missing-attribute]
ERROR torch/_higher_order_ops/flex_attention.py:797:43-52: No attribute `int` in module `torch` [missing-attribute]
@ -2717,8 +2699,6 @@ ERROR torch/_higher_order_ops/flex_attention.py:1040:52-61: No attribute `int` i
ERROR torch/_higher_order_ops/flex_attention.py:1118:10-31: Module `torch.fx.experimental` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_higher_order_ops/flex_attention.py:1118:10-44: Module `torch.fx.experimental.proxy_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_higher_order_ops/flex_attention.py:1142:10-45: Module `torch._subclasses.functional_tensor` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_higher_order_ops/flex_attention.py:1209:49-57: Argument `((...) -> Unknown) | GraphModule` is not assignable to parameter `inner_f` with type `(...) -> Unknown` in function `torch._subclasses.functional_tensor.BaseFunctionalizeAPI.functionalize` [bad-argument-type]
ERROR torch/_higher_order_ops/flex_attention.py:1210:52-63: Argument `GraphModule` is not assignable to parameter `inner_f` with type `(...) -> Unknown` in function `torch._subclasses.functional_tensor.BaseFunctionalizeAPI.functionalize` [bad-argument-type]
ERROR torch/_higher_order_ops/flex_attention.py:1277:18-34: No attribute `empty_like` in module `torch` [missing-attribute]
ERROR torch/_higher_order_ops/flex_attention.py:1281:13-29: No attribute `empty_like` in module `torch` [missing-attribute]
ERROR torch/_higher_order_ops/flex_attention.py:1281:52-75: No attribute `contiguous_format` in module `torch` [missing-attribute]
@ -2767,7 +2747,6 @@ ERROR torch/_higher_order_ops/out_dtype.py:121:20-31: No attribute `dtype` in mo
ERROR torch/_higher_order_ops/out_dtype.py:140:19-30: No attribute `dtype` in module `torch` [missing-attribute]
ERROR torch/_higher_order_ops/out_dtype.py:150:19-30: No attribute `dtype` in module `torch` [missing-attribute]
ERROR torch/_higher_order_ops/partitioner.py:318:27-43: No attribute `zeros_like` in module `torch` [missing-attribute]
ERROR torch/_higher_order_ops/partitioner.py:328:38-46: Argument `GraphModule` is not assignable to parameter `func` with type `(...) -> Unknown` in function `torch._functorch.eager_transforms.functionalize` [bad-argument-type]
ERROR torch/_higher_order_ops/print.py:25:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute]
ERROR torch/_higher_order_ops/print.py:28:64-84: No attribute `FunctionSchema` in module `torch` [missing-attribute]
ERROR torch/_higher_order_ops/print.py:61:16-36: No attribute `DispatchKey` in module `torch._C` [missing-attribute]
@ -2959,8 +2938,6 @@ ERROR torch/_higher_order_ops/while_loop.py:783:20-31: No attribute `zeros` in m
ERROR torch/_higher_order_ops/while_loop.py:783:42-53: No attribute `int64` in module `torch` [missing-attribute]
ERROR torch/_higher_order_ops/while_loop.py:786:13-29: No attribute `zeros_like` in module `torch` [missing-attribute]
ERROR torch/_higher_order_ops/while_loop.py:796:13-22: No attribute `cat` in module `torch` [missing-attribute]
ERROR torch/_higher_order_ops/while_loop.py:884:17-24: Argument `GraphModule` is not assignable to parameter `cond_fn` with type `(...) -> Unknown` in function `WhileLoopOp.__call__` [bad-argument-type]
ERROR torch/_higher_order_ops/while_loop.py:885:17-24: Argument `GraphModule` is not assignable to parameter `body_fn` with type `(...) -> Unknown` in function `WhileLoopOp.__call__` [bad-argument-type]
ERROR torch/_higher_order_ops/wrap.py:9:22-33: Could not import `DispatchKey` from `torch._C` [missing-module-attribute]
ERROR torch/_higher_order_ops/wrap.py:58:16-32: Method `__call__` inherited from class `HigherOrderOperator` has no implementation and cannot be accessed via `super()` [missing-attribute]
ERROR torch/_higher_order_ops/wrap.py:88:20-41: No attribute `is_grad_enabled` in module `torch` [missing-attribute]
@ -4144,7 +4121,6 @@ ERROR torch/_inductor/codegen/halide.py:566:9-14: Class member `HalideOverrides.
ERROR torch/_inductor/codegen/halide.py:594:25-36: No attribute `dtype` in module `torch` [missing-attribute]
ERROR torch/_inductor/codegen/halide.py:720:35-46: No attribute `dtype` in module `torch` [missing-attribute]
ERROR torch/_inductor/codegen/halide.py:811:42-43: Argument `Literal[1]` is not assignable to parameter `divisor` with type `Expr` in function `torch._inductor.codegen.simd.IterationRangesRoot.lookup` [bad-argument-type]
ERROR torch/_inductor/codegen/halide.py:832:17-860:51: `int` is not assignable to `int` (caused by inconsistent types when breaking cycles) [bad-assignment]
ERROR torch/_inductor/codegen/halide.py:983:32-70: `list[tuple[list[Basic | Unknown], Expr | Unknown] | tuple[list[Symbol], Expr]]` is not assignable to variable `split_failed` with type `list[tuple[list[Symbol], Expr]]` [bad-assignment]
ERROR torch/_inductor/codegen/halide.py:1133:22-35: No attribute `float16` in module `torch` [missing-attribute]
ERROR torch/_inductor/codegen/halide.py:1133:37-51: No attribute `bfloat16` in module `torch` [missing-attribute]
@ -4363,6 +4339,7 @@ ERROR torch/_inductor/codegen/simd_kernel_features.py:357:46-52: Argument `list[
ERROR torch/_inductor/codegen/subgraph.py:97:44-56: Object of class `Expr` has no attribute `name` [missing-attribute]
ERROR torch/_inductor/codegen/subgraph.py:98:56-68: Object of class `Expr` has no attribute `name` [missing-attribute]
ERROR torch/_inductor/codegen/subgraph.py:373:31-42: No attribute `empty` in module `torch` [missing-attribute]
ERROR torch/_inductor/codegen/triton_combo_kernel.py:614:34-56: `list[Any]` is not assignable to TypedDict key `configs` with type `DeviceProperties | dict[str, str] | dict[@_, @_]` [bad-typed-dict-key]
ERROR torch/_inductor/codegen/triton_split_scan.py:92:16-37: Could not find import of `triton.language` [missing-import]
ERROR torch/_inductor/codegen/triton_split_scan.py:130:55-61: Argument `int` is not assignable to parameter `index` with type `Expr` in function `torch._inductor.codegen.simd.SIMDKernel.index_to_str` [bad-argument-type]
ERROR torch/_inductor/codegen/triton_utils.py:39:25-44: No attribute `float8_e4m3fn` in module `torch` [missing-attribute]
@ -4458,7 +4435,6 @@ ERROR torch/_inductor/compile_fx.py:2150:30-42: No attribute `device` in module
ERROR torch/_inductor/compile_fx.py:2296:19-32: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_inductor/compile_fx.py:2421:5-26: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_inductor/compile_fx.py:2426:17-38: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_inductor/compile_fx.py:2470:16-22: Returned type `GraphModule` is not assignable to declared return type `((list[object]) -> Sequence[Tensor]) | Weights | list[str] | str` [bad-return]
ERROR torch/_inductor/compile_fx.py:2633:9-27: Module `torch.fx.traceback` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_inductor/compile_fx.py:2636:9-30: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_inductor/compile_fx.py:2681:36-57: No attribute `is_grad_enabled` in module `torch` [missing-attribute]
@ -4535,7 +4511,17 @@ ERROR torch/_inductor/cpu_vec_isa.py:345:61-74: No attribute `float16` in module
ERROR torch/_inductor/cpu_vec_isa.py:358:25-36: No attribute `float` in module `torch` [missing-attribute]
ERROR torch/_inductor/cpu_vec_isa.py:358:41-55: No attribute `bfloat16` in module `torch` [missing-attribute]
ERROR torch/_inductor/cpu_vec_isa.py:358:61-74: No attribute `float16` in module `torch` [missing-attribute]
ERROR torch/_inductor/cpu_vec_isa.py:435:41-51: Cannot index into `dict[str, str]` [bad-index]
ERROR torch/_inductor/cpu_vec_isa.py:410:11-13: Missing argument `__hash__` in function `VecAMX.__init__` [missing-argument]
ERROR torch/_inductor/cpu_vec_isa.py:411:14-16: Missing argument `__hash__` in function `VecAVX512.__init__` [missing-argument]
ERROR torch/_inductor/cpu_vec_isa.py:412:12-14: Missing argument `__hash__` in function `VecAVX2.__init__` [missing-argument]
ERROR torch/_inductor/cpu_vec_isa.py:413:12-14: Missing argument `__hash__` in function `VecNEON.__init__` [missing-argument]
ERROR torch/_inductor/cpu_vec_isa.py:414:14-16: Missing argument `__hash__` in function `VecSVE256.__init__` [missing-argument]
ERROR torch/_inductor/cpu_vec_isa.py:435:41-51: Invalid key for TypedDict `<anonymous>`, got `None` [bad-typed-dict-key]
ERROR torch/_inductor/cpu_vec_isa.py:472:55-57: Missing argument `__hash__` in function `VecZVECTOR.__init__` [missing-argument]
ERROR torch/_inductor/cpu_vec_isa.py:475:31-33: Missing argument `__hash__` in function `VecVSX.__init__` [missing-argument]
ERROR torch/_inductor/cpu_vec_isa.py:478:38-40: Missing argument `__hash__` in function `VecSVE256.__init__` [missing-argument]
ERROR torch/_inductor/cpu_vec_isa.py:480:36-38: Missing argument `__hash__` in function `VecNEON.__init__` [missing-argument]
ERROR torch/_inductor/cpu_vec_isa.py:498:23-25: Missing argument `__hash__` in function `VecAVX2.__init__` [missing-argument]
ERROR torch/_inductor/cudagraph_trees.py:104:9-61: Could not import `_cuda_CUDAAllocator_AllocatorState` from `torch._C` [missing-module-attribute]
ERROR torch/_inductor/cudagraph_trees.py:105:9-36: Could not import `_set_cached_tensors_enabled` from `torch._C` [missing-module-attribute]
ERROR torch/_inductor/cudagraph_trees.py:142:5-41: No attribute `_cuda_clearCublasWorkspaces` in module `torch._C` [missing-attribute]
@ -5031,7 +5017,6 @@ ERROR torch/_inductor/fx_passes/joint_graph.py:945:16-26: No attribute `amax` in
ERROR torch/_inductor/fx_passes/memory_estimator.py:20:13-25: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/_inductor/fx_passes/memory_estimator.py:147:41-63: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_inductor/fx_passes/memory_estimator.py:150:27-39: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/_inductor/fx_passes/memory_estimator.py:205:9-209:76: `int` is not assignable to `int` (caused by inconsistent types when breaking cycles) [bad-assignment]
ERROR torch/_inductor/fx_passes/memory_estimator.py:329:34-46: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/_inductor/fx_passes/memory_estimator.py:388:34-56: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_inductor/fx_passes/micro_pipeline_tp.py:459:16-27: No attribute `dtype` in module `torch` [missing-attribute]
@ -6525,6 +6510,7 @@ ERROR torch/_inductor/mkldnn_lowerings.py:199:8-28: No attribute `_has_mkldnn` i
ERROR torch/_inductor/mkldnn_lowerings.py:344:29-45: Argument `list[Expr | int]` is not assignable to parameter `sizes` with type `Sequence[Expr]` in function `torch._inductor.lowering.view` [bad-argument-type]
ERROR torch/_inductor/mkldnn_lowerings.py:406:29-45: Argument `list[Expr | int]` is not assignable to parameter `sizes` with type `Sequence[Expr]` in function `torch._inductor.lowering.view` [bad-argument-type]
ERROR torch/_inductor/mkldnn_lowerings.py:409:29-45: Argument `list[Expr | int]` is not assignable to parameter `sizes` with type `Sequence[Expr]` in function `torch._inductor.lowering.view` [bad-argument-type]
ERROR torch/_inductor/mkldnn_lowerings.py:430:47-87: `list[int]` is not assignable to TypedDict key `input_indices` with type `((buf: Unknown) -> Unknown) | bool` [bad-typed-dict-key]
ERROR torch/_inductor/mkldnn_lowerings.py:557:17-29: No attribute `tensor` in module `torch` [missing-attribute]
ERROR torch/_inductor/mkldnn_lowerings.py:557:45-58: No attribute `float32` in module `torch` [missing-attribute]
ERROR torch/_inductor/mkldnn_lowerings.py:561:17-29: No attribute `tensor` in module `torch` [missing-attribute]
@ -6663,11 +6649,9 @@ ERROR torch/_inductor/output_code.py:611:21-42: Module `torch._inductor.debug` e
ERROR torch/_inductor/output_code.py:614:13-34: Module `torch._inductor.debug` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_inductor/output_code.py:805:13-40: Module `torch._inductor.cpp_builder` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_inductor/output_code.py:806:16-43: Module `torch._inductor.cpp_builder` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_inductor/output_code.py:827:37-53: `GraphModule` is not assignable to attribute `current_callable` with type `((...) -> Any) | None` [bad-assignment]
ERROR torch/_inductor/package/package.py:129:22-36: Module `torch._C._aoti` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_inductor/package/package.py:135:14-28: Module `torch._C._aoti` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_inductor/pattern_matcher.py:298:17-36: Module `torch.utils._pytree` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_inductor/pattern_matcher.py:309:40-61: Argument `GraphModule` is not assignable to parameter `fn` with type `ReplaceFn | SearchFn` in function `TraceFn.__call__` [bad-argument-type]
ERROR torch/_inductor/pattern_matcher.py:1155:17-25: Class member `Replacer.run_node` overrides parent class `Interpreter` in an inconsistent manner [bad-param-name-override]
ERROR torch/_inductor/pattern_matcher.py:1482:31-50: No attribute `empty_strided` in module `torch` [missing-attribute]
ERROR torch/_inductor/pattern_matcher.py:1581:12-43: No attribute `is_inference_mode_enabled` in module `torch` [missing-attribute]
@ -6697,6 +6681,8 @@ ERROR torch/_inductor/runtime/autotune_cache.py:71:28-47: Module `torch.utils._t
ERROR torch/_inductor/runtime/autotune_cache.py:374:13-77: Could not find import of `torch._inductor.fb.remote_cache` [missing-import]
ERROR torch/_inductor/runtime/autotune_cache.py:514:12-37: Module `torch._inductor.codecache` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_inductor/runtime/autotune_cache.py:528:9-73: Could not find import of `torch._inductor.fb.remote_cache` [missing-import]
ERROR torch/_inductor/runtime/autotune_cache.py:577:45-58: Unexpected keyword argument `num_warps` in function `object.__init__` [unexpected-keyword]
ERROR torch/_inductor/runtime/autotune_cache.py:577:45-58: Unexpected keyword argument `num_stages` in function `object.__init__` [unexpected-keyword]
ERROR torch/_inductor/runtime/benchmarking.py:65:8-30: Module `torch._inductor.config` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_inductor/runtime/benchmarking.py:106:64-76: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/_inductor/runtime/benchmarking.py:107:35-47: No attribute `device` in module `torch` [missing-attribute]
@ -7119,6 +7105,8 @@ ERROR torch/_inductor/utils.py:3047:17-28: No attribute `dtype` in module `torch
ERROR torch/_inductor/utils.py:3048:16-27: No attribute `dtype` in module `torch` [missing-attribute]
ERROR torch/_inductor/utils.py:3078:60-70: No attribute `bool` in module `torch` [missing-attribute]
ERROR torch/_inductor/utils.py:3078:72-83: No attribute `int64` in module `torch` [missing-attribute]
WARN torch/_inductor/utils.py:3094:20-35: Identity comparison between an instance of `BaseSchedulerNode` and class `EnableReduction` is always False [unnecessary-comparison]
WARN torch/_inductor/utils.py:3096:22-38: Identity comparison between an instance of `BaseSchedulerNode` and class `DisableReduction` is always False [unnecessary-comparison]
ERROR torch/_inductor/utils.py:3142:23-36: Module `torch._guards` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_inductor/utils.py:3159:10-23: Module `unittest.mock` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_inductor/utils.py:3224:13-33: No attribute `_foreach_copy_` in module `torch` [missing-attribute]
@ -7173,7 +7161,6 @@ ERROR torch/_jit_internal.py:1335:9-37: No attribute `_jit_set_emit_hooks` in mo
ERROR torch/_jit_internal.py:1341:22-50: No attribute `_jit_get_emit_hooks` in module `torch._C` [missing-attribute]
ERROR torch/_jit_internal.py:1342:9-37: No attribute `_jit_set_emit_hooks` in module `torch._C` [missing-attribute]
ERROR torch/_jit_internal.py:1345:9-37: No attribute `_jit_set_emit_hooks` in module `torch._C` [missing-attribute]
ERROR torch/_lazy/closure.py:66:40-68:14: `Thread` is not assignable to attribute `_closure_event_loop` with type `None` [bad-assignment]
ERROR torch/_lazy/extract_compiled_graph.py:106:28-40: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/_lazy/extract_compiled_graph.py:107:20-32: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/_lazy/extract_compiled_graph.py:112:29-41: No attribute `device` in module `torch` [missing-attribute]
@ -10144,6 +10131,7 @@ ERROR torch/_ops.py:1353:9-20: Class member `_OpNamespace.__getattr__` overrides
ERROR torch/_ops.py:1391:26-53: No attribute `_jit_get_operation` in module `torch._C` [missing-attribute]
ERROR torch/_ops.py:1395:9-28: Module `torch.jit._builtins` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/_prims/__init__.py:12:22-41: Could not import `_get_default_device` from `torch._C` [missing-module-attribute]
ERROR torch/_prims/__init__.py:147:5-12: Name `slice` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/_prims/__init__.py:228:21-32: No attribute `dtype` in module `torch` [missing-attribute]
ERROR torch/_prims/__init__.py:229:28-40: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/_prims/__init__.py:237:27-39: No attribute `device` in module `torch` [missing-attribute]
@ -12599,6 +12587,7 @@ ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:162:28-53: No attribute `quan
ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:163:62-73: No attribute `qint8` in module `torch` [missing-attribute]
ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:165:28-53: No attribute `quantize_per_tensor` in module `torch` [missing-attribute]
ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:166:62-73: No attribute `qint8` in module `torch` [missing-attribute]
WARN torch/ao/nn/quantized/dynamic/modules/rnn.py:170:40-44: Identity comparison `2 is None` is always False [unnecessary-comparison]
ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:328:34-45: No attribute `qint8` in module `torch` [missing-attribute]
ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:372:35-46: No attribute `qint8` in module `torch` [missing-attribute]
ERROR torch/ao/nn/quantized/dynamic/modules/rnn.py:372:48-61: No attribute `float16` in module `torch` [missing-attribute]
@ -13147,6 +13136,9 @@ ERROR torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:197:25-35: No attrib
ERROR torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:231:25-40: No attribute `ones_like` in module `torch` [missing-attribute]
ERROR torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:233:25-41: No attribute `zeros_like` in module `torch` [missing-attribute]
ERROR torch/ao/pruning/sparsifier/weight_norm_sparsifier.py:249:31-47: No attribute `logical_or` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/__init__.py:65:5-19: Name `MatchAllNode` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/ao/quantization/__init__.py:72:5-14: Name `Pattern` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/ao/quantization/__init__.py:131:5-24: Name `get_combined_dict` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/ao/quantization/__init__.py:217:16-27: No attribute `dtype` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/__init__.py:224:18-31: No attribute `qscheme` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/_correct_bias.py:147:30-40: No attribute `mean` in module `torch` [missing-attribute]
@ -13436,7 +13428,6 @@ ERROR torch/ao/quantization/experimental/observer.py:133:9-16: Class member `APo
ERROR torch/ao/quantization/experimental/observer.py:137:28-41: No attribute `aminmax` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/experimental/observer.py:139:23-32: No attribute `min` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/experimental/observer.py:141:23-32: No attribute `max` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/experimental/observer.py:154:16-40: Could not find import of `matplotlib.pyplot` [missing-import]
ERROR torch/ao/quantization/experimental/qconfig.py:12:38-64: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/experimental/qconfig.py:12:72-84: No attribute `quint8` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/experimental/qconfig.py:19:38-64: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute]
@ -13804,7 +13795,6 @@ ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:276:24-36:
ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:277:41-53: No attribute `tensor` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:278:43-55: No attribute `tensor` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/fx/_model_report/model_report_observer.py:279:34-46: No attribute `tensor` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/fx/_model_report/model_report_visualizer.py:19:12-36: Could not find import of `matplotlib.pyplot` [missing-import]
ERROR torch/ao/quantization/fx/convert.py:77:5-17: No attribute `quint8` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/fx/convert.py:78:5-16: No attribute `qint8` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/fx/convert.py:79:5-17: No attribute `qint32` in module `torch` [missing-attribute]
@ -14043,7 +14033,6 @@ ERROR torch/ao/quantization/observer.py:1119:47-59: No attribute `tensor` in mod
ERROR torch/ao/quantization/observer.py:1126:32-44: No attribute `tensor` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/observer.py:1143:17-26: No attribute `sum` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/observer.py:1144:16-28: No attribute `cumsum` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/observer.py:1161:13-1162:26: `int` is not assignable to `int` (caused by inconsistent types when breaking cycles) [bad-assignment]
ERROR torch/ao/quantization/observer.py:1207:13-27: No attribute `linspace` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/observer.py:1215:36-50: No attribute `linspace` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/observer.py:1220:13-28: No attribute `bucketize` in module `torch` [missing-attribute]
@ -14078,6 +14067,9 @@ ERROR torch/ao/quantization/observer.py:1615:26-38: No attribute `quint8` in mod
ERROR torch/ao/quantization/observer.py:1839:23-34: No attribute `dtype` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/observer.py:1844:22-33: No attribute `dtype` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/observer.py:1845:27-38: No attribute `dtype` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/observer.py:1909:25-52: Object of class `NoneType` has no attribute `name` [missing-attribute]
ERROR torch/ao/quantization/observer.py:1945:21-48: Object of class `NoneType` has no attribute `name` [missing-attribute]
ERROR torch/ao/quantization/observer.py:1959:21-48: Object of class `NoneType` has no attribute `name` [missing-attribute]
ERROR torch/ao/quantization/observer.py:2070:11-22: No attribute `qint8` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/observer.py:2070:32-58: No attribute `per_tensor_symmetric` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/observer.py:2077:11-22: No attribute `qint8` in module `torch` [missing-attribute]
@ -14096,17 +14088,11 @@ ERROR torch/ao/quantization/observer.py:2141:44-56: No attribute `quint8` in mod
ERROR torch/ao/quantization/pt2e/_numeric_debugger.py:112:26-39: No attribute `float32` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/_numeric_debugger.py:112:47-60: No attribute `float32` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/export_utils.py:66:27-38: No attribute `randn` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/export_utils.py:69:17-46: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `torch.ao.quantization.pt2e.utils._get_aten_graph_module_for_pattern` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/export_utils.py:73:17-45: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `torch.ao.quantization.pt2e.utils._get_aten_graph_module_for_pattern` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/export_utils.py:78:17-45: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `torch.ao.quantization.pt2e.utils._get_aten_graph_module_for_pattern` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/export_utils.py:82:17-46: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `torch.ao.quantization.pt2e.utils._get_aten_graph_module_for_pattern` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/export_utils.py:140:9-20: No attribute `randn` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/export_utils.py:141:9-20: No attribute `randn` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/export_utils.py:142:9-20: No attribute `randn` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/export_utils.py:143:9-20: No attribute `randn` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/export_utils.py:144:9-20: No attribute `randn` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/export_utils.py:150:9-33: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `torch.ao.quantization.pt2e.utils._get_aten_graph_module_for_pattern` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/export_utils.py:155:9-32: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `torch.ao.quantization.pt2e.utils._get_aten_graph_module_for_pattern` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/graph_utils.py:32:6-15: No attribute `add` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/graph_utils.py:33:6-15: No attribute `mul` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/lowering.py:31:20-33: Module `torch._export` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
@ -14123,17 +14109,12 @@ ERROR torch/ao/quantization/pt2e/qat_utils.py:54:60-71: No attribute `float` in
ERROR torch/ao/quantization/pt2e/qat_utils.py:55:41-53: No attribute `tensor` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/qat_utils.py:55:65-74: No attribute `int` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/qat_utils.py:57:31-42: No attribute `randn` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/qat_utils.py:81:12-44: Returned type `_WrapperModule` is not assignable to declared return type `(...) -> Unknown` [bad-return]
ERROR torch/ao/quantization/pt2e/qat_utils.py:102:23-33: No attribute `sqrt` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/qat_utils.py:110:21-37: No attribute `zeros_like` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/qat_utils.py:125:12-48: Returned type `_WrapperModule` is not assignable to declared return type `(...) -> Unknown` [bad-return]
ERROR torch/ao/quantization/pt2e/qat_utils.py:144:23-33: No attribute `sqrt` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/qat_utils.py:165:12-61: Returned type `_WrapperModule` is not assignable to declared return type `(...) -> Unknown` [bad-return]
ERROR torch/ao/quantization/pt2e/qat_utils.py:184:13-23: No attribute `int8` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/qat_utils.py:222:23-33: No attribute `sqrt` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/qat_utils.py:236:25-41: No attribute `zeros_like` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/qat_utils.py:261:12-58: Returned type `_WrapperModule` is not assignable to declared return type `(...) -> Unknown` [bad-return]
ERROR torch/ao/quantization/pt2e/qat_utils.py:315:12-65: Returned type `_WrapperModule` is not assignable to declared return type `(...) -> Unknown` [bad-return]
ERROR torch/ao/quantization/pt2e/qat_utils.py:596:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation]
ERROR torch/ao/quantization/pt2e/qat_utils.py:596:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation]
ERROR torch/ao/quantization/pt2e/qat_utils.py:596:21-45: Cannot set item in `dict[Mapping[str, Unknown], Unknown]` [unsupported-operation]
@ -14397,30 +14378,10 @@ ERROR torch/ao/quantization/pt2e/representation/rewrite.py:723:9-20: No attribut
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:723:30-41: No attribute `float` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:724:9-20: No attribute `zeros` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:724:30-39: No attribute `int` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:733:13-58: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:734:13-64: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:737:53-64: No attribute `finfo` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:737:65-78: No attribute `float32` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:741:53-64: No attribute `finfo` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:741:65-78: No attribute `float32` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:746:13-50: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:747:13-56: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:753:13-50: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:754:13-56: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:760:13-52: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:761:13-58: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:765:13-47: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:766:13-53: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:770:13-54: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:771:13-60: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:777:13-54: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:778:13-64: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:782:13-56: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:783:13-66: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:787:13-55: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:788:13-65: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:794:13-57: Argument `_WrapperModule` is not assignable to parameter `pattern` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/representation/rewrite.py:795:13-67: Argument `_WrapperModule` is not assignable to parameter `replacement` with type `(...) -> Unknown` in function `_RewriteInfo.__init__` [bad-argument-type]
ERROR torch/ao/quantization/pt2e/utils.py:364:10-23: Module `torch._export` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/ao/quantization/pt2e/utils.py:475:46-57: No attribute `dtype` in module `torch` [missing-attribute]
ERROR torch/ao/quantization/pt2e/utils.py:517:50-61: No attribute `dtype` in module `torch` [missing-attribute]
@ -15095,6 +15056,16 @@ ERROR torch/cuda/__init__.py:1669:16-30: No attribute `bfloat16` in module `torc
ERROR torch/cuda/__init__.py:1680:16-29: No attribute `cdouble` in module `torch` [missing-attribute]
ERROR torch/cuda/__init__.py:1691:16-28: No attribute `cfloat` in module `torch` [missing-attribute]
ERROR torch/cuda/__init__.py:1738:18-32: Module `importlib.util` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/cuda/__init__.py:1834:5-21: Name `BFloat16Tensor` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/cuda/__init__.py:1836:5-17: Name `BoolTensor` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/cuda/__init__.py:1838:5-17: Name `ByteTensor` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/cuda/__init__.py:1840:5-17: Name `CharTensor` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/cuda/__init__.py:1844:5-19: Name `DoubleTensor` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/cuda/__init__.py:1846:5-18: Name `FloatTensor` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/cuda/__init__.py:1848:5-17: Name `HalfTensor` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/cuda/__init__.py:1850:5-16: Name `IntTensor` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/cuda/__init__.py:1852:5-17: Name `LongTensor` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/cuda/__init__.py:1854:5-18: Name `ShortTensor` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/cuda/_device_limits.py:2:22-27: Could not import `dtype` from `torch._C` [missing-module-attribute]
ERROR torch/cuda/_device_limits.py:15:39-51: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/cuda/_device_limits.py:47:25-38: No attribute `float16` in module `torch` [missing-attribute]
@ -16343,8 +16314,6 @@ ERROR torch/distributed/pipelining/_IR.py:503:17-29: No attribute `device` in mo
ERROR torch/distributed/pipelining/_IR.py:1122:17-29: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/distributed/pipelining/_backward.py:196:13-28: No attribute `ones_like` in module `torch` [missing-attribute]
ERROR torch/distributed/pipelining/_backward.py:418:16-25: No attribute `add` in module `torch` [missing-attribute]
ERROR torch/distributed/pipelining/_schedule_visualizer.py:350:12-36: Could not find import of `matplotlib.pyplot` [missing-import]
ERROR torch/distributed/pipelining/_schedule_visualizer.py:351:5-45: Could not find import of `matplotlib.patches` [missing-import]
ERROR torch/distributed/pipelining/microbatch.py:52:28-40: No attribute `tensor` in module `torch` [missing-attribute]
ERROR torch/distributed/pipelining/microbatch.py:143:28-46: No attribute `tensor_split` in module `torch` [missing-attribute]
ERROR torch/distributed/pipelining/microbatch.py:146:25-43: No attribute `tensor_split` in module `torch` [missing-attribute]
@ -16567,7 +16536,6 @@ ERROR torch/distributed/tensor/_utils.py:440:25-35: No attribute `Size` in modul
ERROR torch/distributed/tensor/_utils.py:449:12-22: No attribute `Size` in module `torch` [missing-attribute]
ERROR torch/distributed/tensor/debug/__init__.py:29:12-65: No attribute `_get_DTensor_sharding_propagator_cache_stats` in module `torch._C` [missing-attribute]
ERROR torch/distributed/tensor/debug/__init__.py:47:5-54: No attribute `_clear_DTensor_sharding_propagator_cache` in module `torch._C` [missing-attribute]
ERROR torch/distributed/tensor/debug/_visualize_sharding.py:74:12-22: Could not find import of `matplotlib` [missing-import]
ERROR torch/distributed/tensor/examples/comm_mode_features_example.py:72:13-25: No attribute `arange` in module `torch` [missing-attribute]
ERROR torch/distributed/tensor/examples/comm_mode_features_example.py:76:15-25: No attribute `rand` in module `torch` [missing-attribute]
ERROR torch/distributed/tensor/examples/comm_mode_features_example.py:90:13-25: No attribute `arange` in module `torch` [missing-attribute]
@ -17280,7 +17248,6 @@ ERROR torch/export/_trace.py:843:20-33: Module `torch._export` exists, but was n
ERROR torch/export/_trace.py:1502:22-55: No attribute `_jit_texpr_fuser_enabled` in module `torch._C` [missing-attribute]
ERROR torch/export/_trace.py:1503:5-42: No attribute `_jit_set_texpr_fuser_enabled` in module `torch._C` [missing-attribute]
ERROR torch/export/_trace.py:1507:9-46: No attribute `_jit_set_texpr_fuser_enabled` in module `torch._C` [missing-attribute]
ERROR torch/export/_trace.py:1525:9-12: Argument `Module` is not assignable to parameter `f` with type `(...) -> Unknown` in function `_export_to_torch_ir` [bad-argument-type]
ERROR torch/export/_trace.py:1728:24-64: No attribute `_is_torch_function_mode_enabled` in module `torch._C` [missing-attribute]
ERROR torch/export/_trace.py:1806:29-50: No attribute `is_grad_enabled` in module `torch` [missing-attribute]
ERROR torch/export/_trace.py:1810:21-47: No attribute `_set_grad_enabled` in module `torch._C` [missing-attribute]
@ -17549,7 +17516,6 @@ ERROR torch/fx/experimental/symbolic_shapes.py:2354:9-25: `Expr` is not assignab
ERROR torch/fx/experimental/symbolic_shapes.py:2355:9-25: `Expr` is not assignable to `list[Expr]` [bad-assignment]
ERROR torch/fx/experimental/symbolic_shapes.py:2652:9-21: Class member `SymExprPrinter._print_Float` overrides parent class `PythonPrinter` in an inconsistent manner [bad-override]
ERROR torch/fx/experimental/symbolic_shapes.py:2940:64-2945:10: `set[type[Application] | type[FloorDiv] | type[Mod] | type[PythonMod]]` is not assignable to attribute `_supported_sympy_functions` with type `set[Function]` [bad-assignment]
ERROR torch/fx/experimental/symbolic_shapes.py:3029:16-20: Returned type `_SympyT | Unknown` is not assignable to declared return type `_SympyT` [bad-return]
ERROR torch/fx/experimental/symbolic_shapes.py:3032:18-36: Module `torch.utils._sympy` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/fx/experimental/symbolic_shapes.py:3032:18-46: Module `torch.utils._sympy.functions` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/fx/experimental/symbolic_shapes.py:3077:55-56: Cannot index into `defaultdict[Symbol, set[Expr]]` [bad-index]
@ -17835,6 +17801,7 @@ ERROR torch/jit/_script.py:682:17-36: No attribute `BufferDict` in module `torch
ERROR torch/jit/_script.py:699:35-62: No attribute `ConcreteModuleType` in module `torch._C` [missing-attribute]
ERROR torch/jit/_script.py:705:37-56: No attribute `ModuleDict` in module `torch._C` [missing-attribute]
ERROR torch/jit/_script.py:717:38-59: No attribute `ScriptMethod` in module `torch._C` [missing-attribute]
WARN torch/jit/_script.py:821:30-57: Identity comparison between an instance of `str` and class `RecursiveScriptModule` is always False [unnecessary-comparison]
ERROR torch/jit/_script.py:889:20-40: Module `torch.jit._recursive` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/jit/_script.py:892:20-40: Module `torch.jit._recursive` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/jit/_script.py:1188:16-36: Module `torch.jit._recursive` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
@ -18545,6 +18512,14 @@ ERROR torch/nn/modules/batchnorm.py:74:27-37: No attribute `long` in module `tor
ERROR torch/nn/modules/batchnorm.py:129:60-72: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/nn/modules/batchnorm.py:130:26-38: No attribute `tensor` in module `torch` [missing-attribute]
ERROR torch/nn/modules/batchnorm.py:130:48-58: No attribute `long` in module `torch` [missing-attribute]
ERROR torch/nn/modules/batchnorm.py:240:50-66: Unexpected keyword argument `device` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/batchnorm.py:240:50-66: Unexpected keyword argument `dtype` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/batchnorm.py:242:48-64: Unexpected keyword argument `device` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/batchnorm.py:242:48-64: Unexpected keyword argument `dtype` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/batchnorm.py:245:53-69: Unexpected keyword argument `device` in function `torch.nn.parameter.UninitializedBuffer.__init__` [unexpected-keyword]
ERROR torch/nn/modules/batchnorm.py:245:53-69: Unexpected keyword argument `dtype` in function `torch.nn.parameter.UninitializedBuffer.__init__` [unexpected-keyword]
ERROR torch/nn/modules/batchnorm.py:247:52-68: Unexpected keyword argument `device` in function `torch.nn.parameter.UninitializedBuffer.__init__` [unexpected-keyword]
ERROR torch/nn/modules/batchnorm.py:247:52-68: Unexpected keyword argument `dtype` in function `torch.nn.parameter.UninitializedBuffer.__init__` [unexpected-keyword]
ERROR torch/nn/modules/batchnorm.py:248:40-52: No attribute `tensor` in module `torch` [missing-attribute]
ERROR torch/nn/modules/batchnorm.py:250:23-33: No attribute `long` in module `torch` [missing-attribute]
ERROR torch/nn/modules/batchnorm.py:802:17-55: No attribute `_get_privateuse1_backend_name` in module `torch._C` [missing-attribute]
@ -18554,13 +18529,41 @@ ERROR torch/nn/modules/container.py:1008:46-84: No attribute `_get_privateuse1_b
ERROR torch/nn/modules/conv.py:163:17-28: No attribute `empty` in module `torch` [missing-attribute]
ERROR torch/nn/modules/conv.py:170:17-28: No attribute `empty` in module `torch` [missing-attribute]
ERROR torch/nn/modules/conv.py:176:35-46: No attribute `empty` in module `torch` [missing-attribute]
ERROR torch/nn/modules/conv.py:1536:46-62: Unexpected keyword argument `device` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1536:46-62: Unexpected keyword argument `dtype` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1540:48-64: Unexpected keyword argument `device` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1540:48-64: Unexpected keyword argument `dtype` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1608:46-62: Unexpected keyword argument `device` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1608:46-62: Unexpected keyword argument `dtype` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1612:48-64: Unexpected keyword argument `device` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1612:48-64: Unexpected keyword argument `dtype` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1681:46-62: Unexpected keyword argument `device` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1681:46-62: Unexpected keyword argument `dtype` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1685:48-64: Unexpected keyword argument `device` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1685:48-64: Unexpected keyword argument `dtype` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1753:46-62: Unexpected keyword argument `device` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1753:46-62: Unexpected keyword argument `dtype` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1757:48-64: Unexpected keyword argument `device` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1757:48-64: Unexpected keyword argument `dtype` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1825:46-62: Unexpected keyword argument `device` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1825:46-62: Unexpected keyword argument `dtype` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1829:48-64: Unexpected keyword argument `device` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1829:48-64: Unexpected keyword argument `dtype` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1897:46-62: Unexpected keyword argument `device` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1897:46-62: Unexpected keyword argument `dtype` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1901:48-64: Unexpected keyword argument `device` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/conv.py:1901:48-64: Unexpected keyword argument `dtype` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/linear.py:109:13-24: No attribute `empty` in module `torch` [missing-attribute]
ERROR torch/nn/modules/linear.py:112:35-46: No attribute `empty` in module `torch` [missing-attribute]
ERROR torch/nn/modules/linear.py:221:13-24: No attribute `empty` in module `torch` [missing-attribute]
ERROR torch/nn/modules/linear.py:225:35-46: No attribute `empty` in module `torch` [missing-attribute]
ERROR torch/nn/modules/loss.py:1883:13-87: `((Tensor, Tensor) -> Tensor) | PairwiseDistance` is not assignable to attribute `distance_function` with type `((Tensor, Tensor) -> Tensor) | None` [bad-assignment]
ERROR torch/nn/modules/linear.py:302:46-62: Unexpected keyword argument `device` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/linear.py:302:46-62: Unexpected keyword argument `dtype` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/linear.py:306:48-64: Unexpected keyword argument `device` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/linear.py:306:48-64: Unexpected keyword argument `dtype` in function `torch.nn.parameter.UninitializedParameter.__init__` [unexpected-keyword]
ERROR torch/nn/modules/module.py:14:19-25: Could not import `device` from `torch` [missing-module-attribute]
ERROR torch/nn/modules/module.py:14:27-32: Could not import `dtype` from `torch` [missing-module-attribute]
ERROR torch/nn/modules/module.py:97:32-45: `Module | None` is not assignable to TypedDict key `module` with type `((...) -> Unknown) | bool` [bad-typed-dict-key]
ERROR torch/nn/modules/module.py:484:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute]
ERROR torch/nn/modules/module.py:938:16-55: No attribute `_has_compatible_shallow_copy_type` in module `torch` [missing-attribute]
ERROR torch/nn/modules/module.py:1236:23-39: No attribute `empty_like` in module `torch` [missing-attribute]
@ -20538,7 +20541,6 @@ ERROR torch/profiler/_memory_profiler.py:380:62-75: No attribute `strided` in mo
ERROR torch/profiler/_memory_profiler.py:678:39-51: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/profiler/_memory_profiler.py:1006:18-30: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/profiler/_memory_profiler.py:1074:18-30: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/profiler/_memory_profiler.py:1158:16-40: Could not find import of `matplotlib.pyplot` [missing-import]
ERROR torch/profiler/_memory_profiler.py:1167:18-30: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/profiler/_pattern_matcher.py:337:23-34: No attribute `randn` in module `torch` [missing-attribute]
ERROR torch/profiler/_pattern_matcher.py:337:66-79: No attribute `float32` in module `torch` [missing-attribute]
@ -20565,6 +20567,11 @@ ERROR torch/profiler/_utils.py:332:69-78: No attribute `std` in module `torch` [
ERROR torch/profiler/profiler.py:17:22-51: Could not import `_get_privateuse1_backend_name` from `torch._C` [missing-module-attribute]
ERROR torch/profiler/profiler.py:48:9-16: Class member `_NumpyEncoder.default` overrides parent class `JSONEncoder` in an inconsistent manner [bad-param-name-override]
ERROR torch/profiler/profiler.py:394:28-43: Module `torch.cuda.nccl` exists, but was not imported explicitly. You are relying on other modules to load it. [implicit-import]
ERROR torch/profiler/profiler.py:396:41-79: `str` is not assignable to TypedDict key `nccl_version` with type `Backend | int | list[dict[str, Any]]` [bad-typed-dict-key]
ERROR torch/quantization/__init__.py:37:5-36: Name `_prepare_ondevice_dynamic_jit` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/quantization/__init__.py:38:5-36: Name `_convert_ondevice_dynamic_jit` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/quantization/__init__.py:39:5-37: Name `_quantize_ondevice_dynamic_jit` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/quantization/__init__.py:60:5-21: Name `WeightObserver` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/quantization/_quantized_conversions.py:11:28-38: No attribute `int8` in module `torch` [missing-attribute]
ERROR torch/quantization/_quantized_conversions.py:20:28-38: No attribute `int8` in module `torch` [missing-attribute]
ERROR torch/quantization/_quantized_conversions.py:21:12-23: No attribute `stack` in module `torch` [missing-attribute]
@ -20751,6 +20758,7 @@ ERROR torch/signal/windows/windows.py:870:12-23: No attribute `dtype` in module
ERROR torch/signal/windows/windows.py:871:13-25: No attribute `layout` in module `torch` [missing-attribute]
ERROR torch/signal/windows/windows.py:871:28-41: No attribute `strided` in module `torch` [missing-attribute]
ERROR torch/signal/windows/windows.py:872:13-25: No attribute `device` in module `torch` [missing-attribute]
ERROR torch/sparse/__init__.py:35:5-12: Name `solve` is listed in `__all__` but is not defined in the module [missing-module-attribute]
ERROR torch/sparse/__init__.py:260:20-37: No attribute `_sparse_sum` in module `torch` [missing-attribute]
ERROR torch/sparse/__init__.py:262:20-37: No attribute `_sparse_sum` in module `torch` [missing-attribute]
ERROR torch/sparse/__init__.py:265:20-37: No attribute `_sparse_sum` in module `torch` [missing-attribute]
@ -21469,7 +21477,6 @@ ERROR torch/utils/_sympy/reference.py:348:39-50: No attribute `dtype` in module
ERROR torch/utils/_sympy/reference.py:372:21-32: No attribute `int64` in module `torch` [missing-attribute]
ERROR torch/utils/_sympy/reference.py:374:23-35: No attribute `double` in module `torch` [missing-attribute]
ERROR torch/utils/_sympy/reference.py:376:23-33: No attribute `bool` in module `torch` [missing-attribute]
ERROR torch/utils/_sympy/singleton_int.py:12:5-17: Class member `SingletonInt._op_priority` overrides parent class `AtomicExpr` in an inconsistent manner [bad-override]
ERROR torch/utils/_sympy/solve.py:147:13-38: Object of class `Basic` has no attribute `is_positive` [missing-attribute]
ERROR torch/utils/_sympy/value_ranges.py:276:31-278:14: No matching overload found for function `ValueRanges.__init__` called with arguments: (Max, Min) [no-matching-overload]
ERROR torch/utils/_sympy/value_ranges.py:307:31-309:14: No matching overload found for function `ValueRanges.__init__` called with arguments: (Min, Max) [no-matching-overload]
@ -21571,10 +21578,6 @@ ERROR torch/utils/benchmark/utils/common.py:292:25-46: No attribute `get_num_thr
ERROR torch/utils/benchmark/utils/common.py:294:9-30: No attribute `set_num_threads` in module `torch` [missing-attribute]
ERROR torch/utils/benchmark/utils/common.py:297:9-30: No attribute `set_num_threads` in module `torch` [missing-attribute]
ERROR torch/utils/benchmark/utils/compare.py:8:19-36: Could not import `tensor` from `torch` [missing-module-attribute]
ERROR torch/utils/benchmark/utils/compile.py:92:42-98: No matching overload found for function `torch.compile` called with arguments: (((...) -> Unknown) | Module, backend=CompileCounterWithBackend, mode=str | None) [no-matching-overload]
ERROR torch/utils/benchmark/utils/compile.py:95:86-93: Argument `((...) -> Unknown) | Module | None` is not assignable to parameter `loss_fn` with type `((...) -> Unknown) | None` in function `bench_loop` [bad-argument-type]
ERROR torch/utils/benchmark/utils/compile.py:97:90-97: Argument `((...) -> Unknown) | Module | None` is not assignable to parameter `loss_fn` with type `((...) -> Unknown) | None` in function `bench_loop` [bad-argument-type]
ERROR torch/utils/benchmark/utils/compile.py:112:86-93: Argument `((...) -> Unknown) | Module | None` is not assignable to parameter `loss_fn` with type `((...) -> Unknown) | None` in function `bench_loop` [bad-argument-type]
ERROR torch/utils/benchmark/utils/fuzzer.py:170:17-27: No attribute `bool` in module `torch` [missing-attribute]
ERROR torch/utils/benchmark/utils/fuzzer.py:173:20-31: No attribute `finfo` in module `torch` [missing-attribute]
ERROR torch/utils/benchmark/utils/fuzzer.py:174:16-27: No attribute `iinfo` in module `torch` [missing-attribute]
@ -21666,6 +21669,8 @@ ERROR torch/utils/data/dataloader.py:650:26-41: No attribute `Generator` in modu
ERROR torch/utils/data/dataloader.py:706:13-24: No attribute `empty` in module `torch` [missing-attribute]
ERROR torch/utils/data/dataloader.py:706:35-46: No attribute `int64` in module `torch` [missing-attribute]
ERROR torch/utils/data/dataloader.py:723:26-41: No attribute `Generator` in module `torch` [missing-attribute]
WARN torch/utils/data/dataloader.py:1626:45-49: Identity comparison `False is True` is always False [unnecessary-comparison]
WARN torch/utils/data/dataloader.py:1627:45-49: Identity comparison `False is None` is always False [unnecessary-comparison]
ERROR torch/utils/data/datapipes/datapipe.py:426:9-20: Class member `_MapDataPipeSerializationWrapper.__getitem__` overrides parent class `MapDataPipe` in an inconsistent manner [bad-param-name-override]
WARN torch/utils/data/datapipes/gen_pyi.py:64:30-47: `materialize_lines` is deprecated [deprecated]
ERROR torch/utils/data/datapipes/iter/callable.py:79:9-37: No attribute `_log_api_usage_once` in module `torch._C` [missing-attribute]
@ -21677,7 +21682,6 @@ ERROR torch/utils/data/datapipes/utils/decoder.py:189:20-29: Could not find impo
ERROR torch/utils/data/datapipes/utils/decoder.py:224:28-40: No attribute `tensor` in module `torch` [missing-attribute]
ERROR torch/utils/data/datapipes/utils/decoder.py:227:28-40: No attribute `tensor` in module `torch` [missing-attribute]
ERROR torch/utils/data/datapipes/utils/decoder.py:253:16-30: Could not find import of `torchvision.io` [missing-import]
ERROR torch/utils/data/datapipes/utils/decoder.py:297:20-35: Could not find import of `scipy.io` [missing-import]
ERROR torch/utils/data/dataset.py:17:19-36: Could not import `default_generator` from `torch` [missing-module-attribute]
ERROR torch/utils/data/dataset.py:17:38-47: Could not import `Generator` from `torch` [missing-module-attribute]
ERROR torch/utils/data/dataset.py:17:49-57: Could not import `randperm` from `torch` [missing-module-attribute]
@ -21786,9 +21790,6 @@ ERROR torch/utils/tensorboard/_pytorch_graph.py:8:1-79: Could not find import of
ERROR torch/utils/tensorboard/_pytorch_graph.py:9:1-61: Could not find import of `tensorboard.compat.proto.versions_pb2` [missing-import]
ERROR torch/utils/tensorboard/_pytorch_graph.py:330:13-38: No attribute `_jit_pass_inline` in module `torch._C` [missing-attribute]
ERROR torch/utils/tensorboard/_pytorch_graph.py:375:21-34: No attribute `Node` in module `torch._C` [missing-attribute]
ERROR torch/utils/tensorboard/_utils.py:19:12-36: Could not find import of `matplotlib.pyplot` [missing-import]
ERROR torch/utils/tensorboard/_utils.py:20:12-62: Could not find import of `matplotlib.backends.backend_agg` [missing-import]
ERROR torch/utils/tensorboard/writer.py:11:5-41: Could not find import of `matplotlib.figure` [missing-import]
ERROR torch/utils/tensorboard/writer.py:12:1-34: Could not find import of `tensorboard.compat` [missing-import]
ERROR torch/utils/tensorboard/writer.py:13:1-47: Could not find import of `tensorboard.compat.proto` [missing-import]
ERROR torch/utils/tensorboard/writer.py:14:1-65: Could not find import of `tensorboard.compat.proto.event_pb2` [missing-import]
@ -21869,4 +21870,4 @@ ERROR torch/xpu/streams.py:103:13-35: No attribute `_XpuEventBase` in module `to
ERROR torch/xpu/streams.py:167:32-47: Object of class `Event` has no attribute `sycl_event` [missing-attribute]
ERROR torch/xpu/streams.py:170:12-27: Object of class `Event` has no attribute `sycl_event` [missing-attribute]
INFO Checking project configured at `<CWD>/pyrefly.toml`
INFO 21,740 errors (6,368 suppressed)
INFO 21,733 errors (6,202 suppressed)

View File

@ -7664,7 +7664,6 @@
<CWD>/torch/_inductor/config.py:643:36 - error: "config" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue)
<CWD>/torch/_inductor/config.py:653:47 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/_inductor/config.py:964:21 - error: "_utils_internal" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/_inductor/config.py:993:20 - error: "sched_getaffinity" is not a known attribute of module "os" (reportAttributeAccessIssue)
<CWD>/torch/_inductor/config.py:1040:14 - error: Import "libfb.py" could not be resolved (reportMissingImports)
<CWD>/torch/_inductor/config.py:1565:48 - error: "hip" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/_inductor/config.py:2240:10 - warning: Import "torch.utils._config_typing" could not be resolved from source (reportMissingModuleSource)
@ -11703,7 +11702,6 @@
  Type "Sequence[Symbol] | None" is not assignable to type "Iterable[Expr | int]"
    "None" is incompatible with protocol "Iterable[Expr | int]"
      "__iter__" is not present (reportArgumentType)
<CWD>/torch/_inductor/select_algorithm.py:2534:16 - error: "sched_getaffinity" is not a known attribute of module "os" (reportAttributeAccessIssue)
<CWD>/torch/_inductor/select_algorithm.py:2745:29 - error: "autotune_process" is not a known attribute of module "torch._inductor" (reportAttributeAccessIssue)
<CWD>/torch/_inductor/select_algorithm.py:2761:26 - error: Cannot access attribute "hint_override" for class "ChoiceCaller"
  Attribute "hint_override" is unknown (reportAttributeAccessIssue)
@ -25931,13 +25929,7 @@
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:14:22 - warning: Import "torch._C._onnx" could not be resolved from source (reportMissingModuleSource)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:100:50 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:104:15 - error: Type "Unknown | tuple[Unknown, ...]" is not assignable to declared type "float"
  Type "Unknown | tuple[Unknown, ...]" is not assignable to type "float"
    "tuple[Unknown, ...]" is not assignable to "float" (reportAssignmentType)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:106:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:108:15 - error: Type "Unknown | tuple[Unknown, ...]" is not assignable to declared type "float"
  Type "Unknown | tuple[Unknown, ...]" is not assignable to type "float"
    "tuple[Unknown, ...]" is not assignable to "float" (reportAssignmentType)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:110:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:189:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py:193:23 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue)
@ -26038,9 +26030,6 @@
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:90:48 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:91:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:91:37 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:97:9 - error: Type "Unknown | tuple[Unknown, ...]" is not assignable to declared type "float"
  Type "Unknown | tuple[Unknown, ...]" is not assignable to type "float"
    "tuple[Unknown, ...]" is not assignable to "float" (reportAssignmentType)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:97:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:98:40 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py:98:66 - error: "bool" is not a known attribute of module "torch" (reportAttributeAccessIssue)
@ -26241,8 +26230,6 @@
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:241:68 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:246:27 - error: "sqrt" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:246:38 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py:246:65 - error: Cannot access attribute "type" for class "tuple[Unknown, ...]"
  Attribute "type" is unknown (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:68:15 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py:69:21 - error: "Value" is not a known attribute of module "torch" (reportAttributeAccessIssue)
@ -26495,8 +26482,8 @@
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4247:25 - error: Object of type "None" is not subscriptable (reportOptionalSubscript)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4248:25 - error: Object of type "None" is not subscriptable (reportOptionalSubscript)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4463:48 - error: "LongTensor" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4564:5 - error: Expression with type "tuple[Unknown | tuple[Unknown, ...], Unknown | tuple[Unknown, ...]] | tuple[Unknown | tuple[Unknown, ...], Unknown | tuple[Unknown, ...], Unknown | tuple[Unknown, ...]] | None" cannot be assigned to target tuple
  Type "tuple[Unknown | tuple[Unknown, ...], Unknown | tuple[Unknown, ...]]" is incompatible with target tuple
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4564:5 - error: Expression with type "tuple[Unknown, Unknown] | tuple[Unknown, Unknown, Unknown] | None" cannot be assigned to target tuple
  Type "tuple[Unknown, Unknown]" is incompatible with target tuple
    Tuple size mismatch; expected 3 but received 2 (reportAssignmentType)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:4564:25 - error: "None" is not iterable
  "__iter__" method not defined (reportGeneralTypeIssues)
@ -26602,21 +26589,6 @@
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5921:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5926:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5929:64 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5932:23 - error: Type "Unknown | tuple[Unknown, ...]" is not assignable to declared type "Tensor | None"
  Type "Unknown | tuple[Unknown, ...]" is not assignable to type "Tensor | None"
    Type "tuple[Unknown, ...]" is not assignable to type "Tensor | None"
      "tuple[Unknown, ...]" is not assignable to "Tensor"
      "tuple[Unknown, ...]" is not assignable to "None" (reportAssignmentType)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5934:23 - error: Type "Unknown | tuple[Unknown, ...]" is not assignable to declared type "Tensor | None"
  Type "Unknown | tuple[Unknown, ...]" is not assignable to type "Tensor | None"
    Type "tuple[Unknown, ...]" is not assignable to type "Tensor | None"
      "tuple[Unknown, ...]" is not assignable to "Tensor"
      "tuple[Unknown, ...]" is not assignable to "None" (reportAssignmentType)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5937:19 - error: Type "Unknown | tuple[Unknown, ...]" is not assignable to declared type "Tensor | None"
  Type "Unknown | tuple[Unknown, ...]" is not assignable to type "Tensor | None"
    Type "tuple[Unknown, ...]" is not assignable to type "Tensor | None"
      "tuple[Unknown, ...]" is not assignable to "Tensor"
      "tuple[Unknown, ...]" is not assignable to "None" (reportAssignmentType)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5937:59 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5967:48 - error: "tensor" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py:5967:70 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue)
@ -28493,7 +28465,6 @@
<CWD>/torch/utils/data/dataloader.py
<CWD>/torch/utils/data/dataloader.py:268:18 - error: "_log_api_usage_once" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/utils/data/dataloader.py:455:69 - error: "context" is not a known attribute of module "multiprocessing" (reportAttributeAccessIssue)
<CWD>/torch/utils/data/dataloader.py:612:49 - error: "sched_getaffinity" is not a known attribute of module "os" (reportAttributeAccessIssue)
<CWD>/torch/utils/data/dataloader.py:650:32 - error: "Generator" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/utils/data/dataloader.py:706:19 - error: "empty" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/utils/data/dataloader.py:706:41 - error: "int64" is not a known attribute of module "torch" (reportAttributeAccessIssue)
@ -28816,4 +28787,4 @@
<CWD>/torch/xpu/streams.py
<CWD>/torch/xpu/streams.py:14:23 - error: "_XpuStreamBase" is not a known attribute of module "torch" (reportAttributeAccessIssue)
<CWD>/torch/xpu/streams.py:103:22 - error: "_XpuEventBase" is not a known attribute of module "torch" (reportAttributeAccessIssue)
19691 errors, 402 warnings, 0 informations
19681 errors, 402 warnings, 0 informations

File diff suppressed because it is too large Load Diff

View File

@ -177,7 +177,7 @@ ALL: Final = [
Project(
name="homeassistant",
repository="https://github.com/home-assistant/core.git",
revision="7fd440c4a06777bc4cfd90a3c176ded80c87a8fd",
revision="7b6df1a8a074afefff6a50b3495dafd5954b6dac",
python_version="3.14",
include=["homeassistant"],
skip="Missing dependencies on Windows" if sys.platform == "win32" else None,

View File

@ -73,7 +73,7 @@ class Venv:
# our projects isn't unexpectedly broken by a change in the
# annotations of one of that project's dependencies
"--exclude-newer",
"2025-12-06T00:00:00Z",
"2025-12-13T00:00:00Z",
"mypy", # We need to install mypy into the virtual environment or it fails to load plugins.
*pip_install_args,
]

View File

@ -116,23 +116,23 @@ wheels = [
[[package]]
name = "pyrefly"
version = "0.44.1"
version = "0.45.2"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/da/d8/b2ae5bdb24be6d81728a5de6b7bf10d2e84f9dcbdc29d084aca724f87262/pyrefly-0.44.1.tar.gz", hash = "sha256:9ec70988588f39c20bab25827ffb706f6b985acc43ec5f6bad6d3bc1f6881def", size = 3942165, upload-time = "2025-12-04T00:08:04.103Z" }
sdist = { url = "https://files.pythonhosted.org/packages/ce/1f/f9a64686ccc487906f97fb55a155875e600634a96f506a9b764b7c58fbb1/pyrefly-0.45.2.tar.gz", hash = "sha256:3f2f011e3fe6ed6662c8aab86c05365336b2bb07d44852fe7428be61239a9fe1", size = 5055002, upload-time = "2025-12-11T00:27:43.027Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/de/ed/87c2ecbf796dd8868db889e02f4bf7cd3e41c53ef7dbbf9a0803a093fbba/pyrefly-0.44.1-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:99e2e5d388eeeecf51c30d430563f04e40a5fc5352f3dab82a8f85aca1af2318", size = 9977353, upload-time = "2025-12-04T00:07:40.433Z" },
{ url = "https://files.pythonhosted.org/packages/0b/df/1923f02370b92d84ccc2634342f2c9635e6c5a4ff53d81fc0e1540a47753/pyrefly-0.44.1-py3-none-macosx_11_0_arm64.whl", hash = "sha256:89c9d503b040613da2a8ae7044c6530a1d8b8c6dbb13465617e1adb2c99b2e31", size = 9565577, upload-time = "2025-12-04T00:07:43.133Z" },
{ url = "https://files.pythonhosted.org/packages/08/8a/26e95330ba127d642a11026f5e926ba84daaa1f4930c6c546c57d6aa3aa5/pyrefly-0.44.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:64969d6b44018f70670b416d74c56d80b949933f2651c0673a89359a6816bdde", size = 9813767, upload-time = "2025-12-04T00:07:45.788Z" },
{ url = "https://files.pythonhosted.org/packages/73/c4/79625096a3fa4f3a2c043df4fdb842b65e37f5ff4df741229b9b7bcc4117/pyrefly-0.44.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82a90514f452912c5013162e0d00c5d3eac1265e77be69dd47a73530eced1cdc", size = 10654009, upload-time = "2025-12-04T00:07:49.43Z" },
{ url = "https://files.pythonhosted.org/packages/0c/b7/45c60666403606274715cc6c5e6112ca3f1377af7d23b1495f0ba24c4748/pyrefly-0.44.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:30b4fa577509f927cbcb2f7ad092307ca5a91bc137d74679671e1a6e4fb6f629", size = 10293339, upload-time = "2025-12-04T00:07:52.548Z" },
{ url = "https://files.pythonhosted.org/packages/26/6d/aa934774460a9f7ac8f4dbf0423e058901589d8afe3ad4dd1e1ae8eadab0/pyrefly-0.44.1-py3-none-win32.whl", hash = "sha256:d77d7b7f7df7edf40dfca16cc6e2de17ac5c377ba558c9b350d10484a807b04b", size = 9717767, upload-time = "2025-12-04T00:07:55.586Z" },
{ url = "https://files.pythonhosted.org/packages/47/4f/7705110ae44d42b0f006745c9f432a19090d2002daf25f5f356608b1112e/pyrefly-0.44.1-py3-none-win_amd64.whl", hash = "sha256:7c0ca181400fdd382b4eb24ade6a6f6787c513566b77acb8f79750f80e80133b", size = 10371240, upload-time = "2025-12-04T00:07:58.823Z" },
{ url = "https://files.pythonhosted.org/packages/88/ff/b3e20628f6477489a366f6ff98d0ec6c74de643913c58c82eb4d73b1ef1a/pyrefly-0.44.1-py3-none-win_arm64.whl", hash = "sha256:5e8cc66acd173e2612361c03ef7b45d7245c04b09cbd24042b27c6081f6cd809", size = 9946460, upload-time = "2025-12-04T00:08:01.8Z" },
{ url = "https://files.pythonhosted.org/packages/50/b8/67798a7db5520fa85420e270f323dc091d5fd73a492eaf8c143d14fc9859/pyrefly-0.45.2-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:33467adbb9aa4993666a1e3dcb35d00facdea1750692ccb2a07fdb9204cf1f10", size = 11194425, upload-time = "2025-12-11T00:27:23.364Z" },
{ url = "https://files.pythonhosted.org/packages/c2/1b/f5f36b053f2b31e1c3348e259dfa9dd17fbf796b782a3de530ededa5ce9a/pyrefly-0.45.2-py3-none-macosx_11_0_arm64.whl", hash = "sha256:5eded1227406f57cffe240c232fbee6f585f9441709b9e1cfb994a6b175a28cf", size = 10787764, upload-time = "2025-12-11T00:27:25.557Z" },
{ url = "https://files.pythonhosted.org/packages/23/49/a6528dac16638748e60c31768aa591b6cfef5a5cd917693937a075daccfa/pyrefly-0.45.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2007e49807f6564505615fa7422a3278c58aa648e2b8b2d9b89ea04cf4ce5dc", size = 11035893, upload-time = "2025-12-11T00:27:27.997Z" },
{ url = "https://files.pythonhosted.org/packages/3a/ea/46e48be259e6e003ee4c9d2d4151df5204924e3b1f81a61401145b2e0c9a/pyrefly-0.45.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f49ec5535b3a4c6f342d6429439e078c1344ff4a5d2592fd05bc51d1d748e5d4", size = 11903460, upload-time = "2025-12-11T00:27:30.343Z" },
{ url = "https://files.pythonhosted.org/packages/c4/72/573457118d41cdd20d5ed09d4a2bc8bd692ab18a08bf3a450c239d041fe4/pyrefly-0.45.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:597a3e0f8eb3ffe798368906cf14edacafe73c336ce8ee83c80f2a259a2c8f2b", size = 11534889, upload-time = "2025-12-11T00:27:32.966Z" },
{ url = "https://files.pythonhosted.org/packages/b8/a5/a2eea3093b20d7a02fcf23419c99c31a7ebc95c25ba70746c1dc8eb93fbd/pyrefly-0.45.2-py3-none-win32.whl", hash = "sha256:a71a9efcba0cc8afacee248430c27a7d76ea9ff0f8c6d975329a5c6deabbb682", size = 10956305, upload-time = "2025-12-11T00:27:36.357Z" },
{ url = "https://files.pythonhosted.org/packages/a9/fb/30a6bbee4a89812644621ecfcbe830d4f6e8c519c6e722d09691fe59434c/pyrefly-0.45.2-py3-none-win_amd64.whl", hash = "sha256:d48b92c619a217bc4992b4899bf0eac3d049344a235e4d566088e6476b3d027e", size = 11632887, upload-time = "2025-12-11T00:27:38.513Z" },
{ url = "https://files.pythonhosted.org/packages/67/4f/ab7daab11f1abb0b5ebb8b343c834f87930f651e5b811cc55eaa51a03c0f/pyrefly-0.45.2-py3-none-win_arm64.whl", hash = "sha256:b1678936383471076c99c12fe15ebe1f9bc7ada5f499f40b01d9c934c1c8308f", size = 11184966, upload-time = "2025-12-11T00:27:40.836Z" },
]
[[package]]
name = "pytest"
version = "9.0.1"
version = "9.0.2"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "colorama", marker = "sys_platform == 'win32'" },
@ -141,9 +141,9 @@ dependencies = [
{ name = "pluggy" },
{ name = "pygments" },
]
sdist = { url = "https://files.pythonhosted.org/packages/07/56/f013048ac4bc4c1d9be45afd4ab209ea62822fb1598f40687e6bf45dcea4/pytest-9.0.1.tar.gz", hash = "sha256:3e9c069ea73583e255c3b21cf46b8d3c56f6e3a1a8f6da94ccb0fcf57b9d73c8", size = 1564125, upload-time = "2025-11-12T13:05:09.333Z" }
sdist = { url = "https://files.pythonhosted.org/packages/d1/db/7ef3487e0fb0049ddb5ce41d3a49c235bf9ad299b6a25d5780a89f19230f/pytest-9.0.2.tar.gz", hash = "sha256:75186651a92bd89611d1d9fc20f0b4345fd827c41ccd5c299a868a05d70edf11", size = 1568901, upload-time = "2025-12-06T21:30:51.014Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/0b/8b/6300fb80f858cda1c51ffa17075df5d846757081d11ab4aa35cef9e6258b/pytest-9.0.1-py3-none-any.whl", hash = "sha256:67be0030d194df2dfa7b556f2e56fb3c3315bd5c8822c6951162b92b32ce7dad", size = 373668, upload-time = "2025-11-12T13:05:07.379Z" },
{ url = "https://files.pythonhosted.org/packages/3b/ab/b3226f0bd7cdcf710fbede2b3548584366da3b19b5021e74f5bde2a8fa3f/pytest-9.0.2-py3-none-any.whl", hash = "sha256:711ffd45bf766d5264d487b917733b453d917afd2b0ad65223959f59089f875b", size = 374801, upload-time = "2025-12-06T21:30:49.154Z" },
]
[[package]]