Summary

Comparing branches/commits:
Old: main (merge base) 09f570af
New: 20523/merge 78cecc0b
Lint Rule Removed Added Changed
Total 85 2471 251
invalid-argument-type 0 982 122
unknown-argument 0 694 0
possibly-missing-attribute 2 195 25
invalid-assignment 0 119 43
possibly-missing-implicit-call 0 153 7
non-subscriptable 0 102 2
unsupported-operator 1 71 13
unused-ignore-comment 79 0 0
no-matching-overload 0 52 0
invalid-return-type 0 15 32
call-non-callable 0 43 1
index-out-of-bounds 0 15 0
too-many-positional-arguments 0 12 0
not-iterable 0 7 4
missing-argument 0 9 0
unresolved-attribute 2 2 2
type-assertion-failure 1 0 0

Expression (https://github.com/cognitedata/Expression)

expression/core/result.py

[error] invalid-return-type - :198:24 - Return type does not match returned value: expected `dict[str, _TSourceOut@Result | _TErrorOut@Result | Literal["ok", "error"]]`, found `dict[Unknown | str, Unknown | str | _TSourceOut@Result]`
[error] invalid-return-type - :203:24 - Return type does not match returned value: expected `dict[str, _TSourceOut@Result | _TErrorOut@Result | Literal["ok", "error"]]`, found `dict[Unknown | str, Unknown | str | _TErrorOut@Result]`

aioredis (https://github.com/aio-libs/aioredis)

aioredis/client.py

[error] invalid-argument-type - :916:46 - Argument to bound method `__init__` is incorrect: Expected `int | None`, found `Unknown | str | int | None | float`
[error] invalid-argument-type - :916:46 - Argument to bound method `__init__` is incorrect: Expected `type[Connection]`, found `Unknown | str | int | None | float`

aiortc (https://github.com/aiortc/aiortc)

src/aiortc/rtcpeerconnection.py

[error] invalid-assignment - :108:17 - Method `__setitem__` of type `bound method dict[int, RTCRtpCodecParameters].__setitem__(key: int, value: RTCRtpCodecParameters, /) -> None` cannot be called with a key of type `int | None` and a value of type `RTCRtpCodecParameters` on object of type `dict[int, RTCRtpCodecParameters]`
[error] invalid-assignment - :1236:17 - Method `__setitem__` of type `bound method dict[int, RTCRtpDecodingParameters].__setitem__(key: int, value: RTCRtpDecodingParameters, /) -> None` cannot be called with a key of type `int | None` and a value of type `RTCRtpDecodingParameters` on object of type `dict[int, RTCRtpDecodingParameters]`

alerta (https://github.com/alerta/alerta)

alerta/utils/logging.py

[error] unsupported-operator - :309:22 - Operator `+` is unsupported between objects of type `Unknown | int` and `Unknown | str | int`

alerta/webhooks/prometheus.py

[warning] possibly-missing-attribute - :70:41 -
Old: Attribute `upper` on type `@Todo | None | Literal["unknown"]` may be missing
New: Attribute `upper` on type `Unknown | None | Literal["unknown"]` may be missing

altair (https://github.com/vega/altair)

altair/datasets/_readimpl.py

[error] invalid-argument-type - :339:35 - Argument to function `read` is incorrect: Expected `MetaIs | None`, found `Any | str`
[error] invalid-argument-type - :341:45 - Argument to function `read` is incorrect: Expected `MetaIs | None`, found `Any | str`
[error] invalid-argument-type - :342:41 - Argument to function `read` is incorrect: Expected `MetaIs | None`, found `Any | str`
[error] invalid-argument-type - :343:43 - Argument to function `read` is incorrect: Expected `MetaIs | None`, found `Any | str`

altair/utils/schemapi.py

[error] invalid-assignment - :1689:1 - Object of type `dict[Unknown | str, Unknown | str]` is not assignable to `Mapping[Literal["vega-datasets", "vega-embed", "vega-lite", "vegafusion", "vl-convert-python"], str]`

tests/test_jupyter_chart.py

[error] invalid-assignment - :125:9 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to attribute `_vl_selections` on type `JupyterChart | JupyterChart`
New: Object of type `dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | list[Unknown | float | int] | list[Unknown | int]] | list[Unknown | dict[Unknown | str, Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str]] | list[Unknown | list[Unknown | float | int] | list[Unknown | int]]]]]]` is not assignable to attribute `_vl_selections` on type `JupyterChart | JupyterChart`
[error] invalid-assignment - :186:9 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to attribute `_vl_selections` on type `JupyterChart | JupyterChart`
New: Object of type `dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | list[Unknown | dict[Unknown | str, Unknown | int]]]] | list[Unknown | dict[Unknown | str, Unknown | str | int]]]]` is not assignable to attribute `_vl_selections` on type `JupyterChart | JupyterChart`
[error] invalid-assignment - :251:9 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to attribute `_vl_selections` on type `JupyterChart | JupyterChart`
New: Object of type `dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | list[Unknown | int] | dict[Unknown | str, Unknown | list[Unknown | dict[Unknown | str, Unknown | int]]]] | list[Unknown | dict[Unknown | str, Unknown | list[Unknown | dict[Unknown | str, Unknown | str]] | list[Unknown | int]]]]]` is not assignable to attribute `_vl_selections` on type `JupyterChart | JupyterChart`

antidote (https://github.com/Finistere/antidote)

tests/core/test_inject.py

[warning] unused-ignore-comment - :132:46 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :162:48 - Unused blanket `type: ignore` directive

tests/core/test_wiring.py

[warning] unused-ignore-comment - :239:47 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :323:53 - Unused blanket `type: ignore` directive

tests/lib/injectable/test_injectable.py

[warning] unused-ignore-comment - :168:40 - Unused blanket `type: ignore` directive

apprise (https://github.com/caronc/apprise)

apprise/plugins/bluesky.py

[warning] possibly-missing-implicit-call - :258:21 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str]` may be missing
[warning] possibly-missing-implicit-call - :261:21 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str]` may be missing
[warning] possibly-missing-implicit-call - :263:17 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str]` may be missing

apprise/plugins/fcm/__init__.py

[warning] possibly-missing-implicit-call - :421:21 - Method `__setitem__` of type `Unknown | None | dict[Unknown | str, Unknown | str]` may be missing

apprise/plugins/line.py

[error] non-subscriptable - :174:13 - Cannot subscript object of type `None` with no `__getitem__` method
[warning] possibly-missing-implicit-call - :174:13 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown]` may be missing

apprise/plugins/notifiarr.py

[error] invalid-argument-type - :330:17 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["text"]` on object of type `NotifyType`
[warning] possibly-missing-implicit-call - :330:17 - Method `__setitem__` of type `Unknown | bool | str | dict[Unknown | str, Unknown | int] | dict[Unknown | str, Unknown | str] | dict[Unknown | str, Unknown]` may be missing
[warning] possibly-missing-implicit-call - :331:17 - Method `__setitem__` of type `Unknown | (Unknown & ~AlwaysFalsy) | NotifyType | dict[Unknown | str, Unknown | bool | str] | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | int] | dict[Unknown | str, Unknown | str] | dict[Unknown | str, Unknown]]` may be missing

apprise/plugins/office365.py

[warning] possibly-missing-attribute - :390:13 - Attribute `update` on type `Unknown | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str]] | str` may be missing
[warning] possibly-missing-implicit-call - :469:13 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str]] | str` may be missing
[warning] possibly-missing-implicit-call - :489:13 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str]] | str` may be missing
[error] invalid-argument-type - :494:17 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["emailAddress"]` on object of type `str`
[error] invalid-argument-type - :494:17 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["toRecipients"]` on object of type `str`
[warning] possibly-missing-implicit-call - :506:17 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str]] | str` may be missing
[warning] possibly-missing-attribute - :513:21 - Attribute `append` on type `Unknown | str | dict[Unknown | str, Unknown | str]` may be missing
[error] invalid-argument-type - :513:21 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["ccRecipients"]` on object of type `str`
[warning] possibly-missing-implicit-call - :536:17 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str]] | str` may be missing
[warning] possibly-missing-attribute - :543:21 - Attribute `append` on type `Unknown | str | dict[Unknown | str, Unknown | str]` may be missing
[error] invalid-argument-type - :543:21 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["bccRecipients"]` on object of type `str`

apprise/plugins/one_signal.py

[error] invalid-argument-type - :453:35 - Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | dict[Unknown, Unknown] | bool`

apprise/plugins/pagerduty.py

[warning] possibly-missing-implicit-call - :384:17 - Method `__setitem__` of type `Unknown | str | (Unknown & ~AlwaysFalsy)` may be missing

apprise/plugins/ryver.py

[warning] possibly-missing-implicit-call - :230:13 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | None]` may be missing

apprise/plugins/sendgrid.py

[warning] possibly-missing-implicit-call - :425:13 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | None] | str` may be missing

apprise/plugins/slack.py

[warning] possibly-missing-attribute - :509:21 - Attribute `insert` on type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str]]` may be missing

apprise/plugins/whatsapp.py

[warning] possibly-missing-implicit-call - :366:17 - Method `__setitem__` of type `Unknown | str | None` may be missing
[error] non-subscriptable - :373:25 - Cannot subscript object of type `None` with no `__getitem__` method
[error] invalid-argument-type - :373:25 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["components"]` on object of type `str`
[error] non-subscriptable - :379:21 - Cannot subscript object of type `None` with no `__getitem__` method
[error] invalid-argument-type - :379:21 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["components"]` on object of type `str`

apprise/plugins/xbmc.py

[warning] possibly-missing-implicit-call - :193:13 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | int] | int` may be missing
[warning] possibly-missing-implicit-call - :231:13 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | int] | int` may be missing

apprise/apprise.py

[warning] possibly-missing-attribute - :850:13 - Attribute `append` on type `Unknown | str | list[Unknown]` may be missing

apprise/persistent_store.py

[error] invalid-return-type - :1708:20 -
Old: Return type does not match returned value: expected `set[str]`, found `dict_keys[@Todo, @Todo]`
New: Return type does not match returned value: expected `set[str]`, found `dict_keys[Unknown, Unknown]`

apprise/plugins/apprise_api.py

[warning] possibly-missing-implicit-call - :344:13 -
Old: Method `__setitem__` of type `dict[@Todo, @Todo] | str` may be missing
New: Method `__setitem__` of type `dict[Unknown | str, Unknown | str] | str` may be missing

apprise/plugins/d7networks.py

[error] invalid-assignment - :238:13 - Method `__setitem__` of type `Unknown | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | None | str], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | None | str]], /) -> None])` cannot be called with a key of type `Literal["originator"]` and a value of type `Unknown & ~AlwaysFalsy` on object of type `Unknown | dict[Unknown | str, Unknown | str] | list[Unknown | dict[Unknown | str, Unknown | None | str]]`
[warning] possibly-missing-implicit-call - :245:17 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | None | str]` may be missing
[warning] possibly-missing-implicit-call - :257:17 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | None | str]` may be missing

apprise/plugins/discord.py

[warning] possibly-missing-implicit-call - :357:25 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown] | str | (Unknown & ~AlwaysFalsy)` may be missing
[error] non-subscriptable - :421:17 - Cannot subscript object of type `bool` with no `__getitem__` method
[error] non-subscriptable - :423:21 - Cannot subscript object of type `bool` with no `__getitem__` method

apprise/plugins/email/base.py

[error] unsupported-operator - :505:28 - Operator `not in` is not supported for types `Unknown` and `int`, in comparing `Unknown | Literal["Email"]` with `(Unknown & ~AlwaysFalsy) | (int & ~AlwaysFalsy) | (str & ~AlwaysFalsy) | tuple[Unknown | str]`
[error] unsupported-operator - :514:26 - Operator `not in` is not supported for types `Unknown` and `int`, in comparing `Unknown | Literal["UserID"]` with `(Unknown & ~AlwaysFalsy) | (int & ~AlwaysFalsy) | (str & ~AlwaysFalsy) | tuple[Unknown | str]`

apprise/plugins/lametric.py

[warning] possibly-missing-implicit-call - :768:13 - Method `__setitem__` of type `Unknown | int | dict[Unknown | str, Unknown | list[Unknown | dict[Unknown | str, Unknown | (Unknown & ~AlwaysFalsy)]]]` may be missing

apprise/plugins/msteams.py

[warning] possibly-missing-implicit-call - :373:17 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | None | str]` may be missing

apprise/plugins/sendpulse.py

[warning] possibly-missing-attribute - :562:17 - Attribute `append` on type `Unknown | dict[Unknown | str, Unknown] | list[Unknown] | (Unknown & ~AlwaysFalsy)` may be missing
[warning] possibly-missing-attribute - :573:17 - Attribute `append` on type `Unknown | dict[Unknown | str, Unknown] | list[Unknown] | (Unknown & ~AlwaysFalsy)` may be missing

apprise/plugins/smseagle.py

[warning] possibly-missing-attribute - :478:13 - Attribute `update` on type `Unknown | str | dict[Unknown | str, Unknown | None]` may be missing
[warning] possibly-missing-implicit-call - :481:13 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | None]` may be missing
[warning] possibly-missing-implicit-call - :488:17 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | None]` may be missing
[warning] possibly-missing-implicit-call - :489:17 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | None]` may be missing
[warning] possibly-missing-implicit-call - :494:17 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | None]` may be missing

apprise/plugins/sparkpost.py

[warning] possibly-missing-attribute - :578:21 - Attribute `append` on type `Unknown | bool | dict[Unknown | str, Unknown | (Unknown & ~AlwaysFalsy)] | str` may be missing

apprise/plugins/twitter.py

[error] invalid-argument-type - :567:25 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["message_data"]` on object of type `str`

apprise/utils/parse.py

[error] non-subscriptable - :684:12 - Cannot subscript object of type `None` with no `__getitem__` method
[error] no-matching-overload - :705:17 - No overload of bound method `search` matches arguments
[error] no-matching-overload - :715:44 - No overload of function `split` matches arguments
[error] no-matching-overload - :721:52 - No overload of function `split` matches arguments
[error] no-matching-overload - :726:14 - No overload of function `search` matches arguments
[error] unsupported-operator - :783:9 - Operator `+=` is unsupported between objects of type `None` and `Unknown | None | str | dict[Unknown, Unknown]`
[error] unsupported-operator - :783:9 - Operator `+=` is unsupported between objects of type `dict[Unknown, Unknown]` and `Unknown | None | str | dict[Unknown, Unknown]`
[error] unsupported-operator - :783:9 - Operator `+=` is unsupported between objects of type `str` and `Unknown | None | str | dict[Unknown, Unknown]`
[error] unsupported-operator - :790:5 - Operator `+=` is unsupported between objects of type `None` and `Unknown | None | str | dict[Unknown, Unknown] | (Unknown & ~AlwaysFalsy) | (dict[Unknown, Unknown] & ~AlwaysFalsy)`
[error] unsupported-operator - :790:5 - Operator `+=` is unsupported between objects of type `dict[Unknown, Unknown]` and `Unknown | None | str | dict[Unknown, Unknown] | (Unknown & ~AlwaysFalsy) | (dict[Unknown, Unknown] & ~AlwaysFalsy)`
[error] unsupported-operator - :790:5 - Operator `+=` is unsupported between objects of type `str` and `Unknown | None | str | dict[Unknown, Unknown] | (Unknown & ~AlwaysFalsy) | (dict[Unknown, Unknown] & ~AlwaysFalsy)`
[warning] possibly-missing-attribute - :706:26 - Attribute `group` on type `Unknown | Match[str] | None` may be missing
[warning] possibly-missing-attribute - :707:27 - Attribute `group` on type `Unknown | Match[str] | None` may be missing
[error] unsupported-operator - :800:9 - Operator `+=` is unsupported between objects of type `str` and `(str & ~AlwaysFalsy) | (@Todo & ~AlwaysFalsy) | None | @Todo`

tests/test_api.py

[error] invalid-assignment - :1040:5 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to attribute `_url_identifier` on type `NotifyBase | None`
New: Object of type `dict[Unknown | str, Unknown | str | bytes | int | <class 'object'>]` is not assignable to attribute `_url_identifier` on type `NotifyBase | None`

tests/test_apprise_config.py

[warning] possibly-missing-implicit-call - :265:5 -
Old: Method `__setitem__` of type `Unknown | None | dict[@Todo, @Todo]` may be missing
New: Method `__setitem__` of type `Unknown | None | dict[Unknown, Unknown]` may be missing
[warning] possibly-missing-implicit-call - :576:5 -
Old: Method `__setitem__` of type `Unknown | None | dict[@Todo, @Todo]` may be missing
New: Method `__setitem__` of type `Unknown | None | dict[Unknown, Unknown]` may be missing

tests/test_apprise_utils.py

[error] non-subscriptable - :2223:12 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :2223:12 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["w"]` on object of type `str`
[error] non-subscriptable - :2224:12 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :2224:12 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["x"]` on object of type `str`
[error] non-subscriptable - :2233:12 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :2234:12 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :2235:12 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :2236:12 - Cannot subscript object of type `int` with no `__getitem__` method

tests/test_attach_http.py

[error] invalid-assignment - :147:9 - Object of type `dict[Unknown | str, Unknown | int | str]` is not assignable to `dict[str, str]`

tests/test_config_base.py

[error] invalid-argument-type - :53:20 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str`
[error] invalid-argument-type - :53:20 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | str`
[error] invalid-argument-type - :53:20 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | str`
[error] invalid-argument-type - :57:20 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str`
[error] invalid-argument-type - :57:20 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | str`
[error] invalid-argument-type - :57:20 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | str`
[error] invalid-argument-type - :59:21 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str`
[error] invalid-argument-type - :59:21 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | str`
[error] invalid-argument-type - :59:21 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | str`
[error] invalid-argument-type - :62:21 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str`
[error] invalid-argument-type - :62:21 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | str`
[error] invalid-argument-type - :62:21 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | str`

tests/test_plugin_email.py

[warning] possibly-missing-attribute - :531:24 - Attribute `parse_url` on type `(Unknown & ~None) | <class 'TypeError'> | <class 'NotifyEmail'> | str | bool` may be missing
[warning] possibly-missing-attribute - :532:24 - Attribute `parse_url` on type `(Unknown & ~None) | <class 'TypeError'> | <class 'NotifyEmail'> | str | bool` may be missing
[warning] possibly-missing-attribute - :533:24 - Attribute `parse_url` on type `(Unknown & ~None) | <class 'TypeError'> | <class 'NotifyEmail'> | str | bool` may be missing
[warning] possibly-missing-attribute - :560:33 - Attribute `items` on type `(Unknown & ~AlwaysFalsy) | (<class 'TypeError'> & ~AlwaysFalsy) | (<class 'NotifyEmail'> & ~AlwaysFalsy) | (str & ~AlwaysFalsy) | Literal[True]` may be missing
[error] not-iterable - :586:38 - Object of type `(Unknown & ~AlwaysTruthy & ~Literal[False]) | (<class 'TypeError'> & ~AlwaysTruthy) | (<class 'NotifyEmail'> & ~AlwaysTruthy) | (str & ~AlwaysTruthy) | tuple[SMTPHeloError, SMTPException, RuntimeError, SMTPRecipientsRefused, SMTPSenderRefused, SMTPDataError, SMTPServerDisconnected]` may not be iterable

tests/test_plugin_growl.py

[warning] possibly-missing-attribute - :349:33 - Attribute `items` on type `(Unknown & ~AlwaysFalsy) | (<class 'NotifyGrowl'> & ~AlwaysFalsy) | Literal[True]` may be missing

artigraph (https://github.com/artigraph/artigraph)

tests/arti/storage/test_local_storage.py

[error] invalid-argument-type - :132:9 -
Old: Argument is incorrect: Expected `PartitionKey`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `PartitionKey`, found `dict[Unknown, Unknown]`

tests/arti/storage/test_storage.py

[error] invalid-argument-type - :49:56 -
Old: Argument is incorrect: Expected `PartitionKey`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `PartitionKey`, found `dict[Unknown, Unknown]`

tests/arti/types/test_types.py

[error] invalid-argument-type - :146:73 - Argument is incorrect: Expected `bool`, found `Unknown | tuple[str]`
[error] invalid-argument-type - :146:73 - Argument is incorrect: Expected `set[str]`, found `Unknown | tuple[str]`
[error] invalid-argument-type - :146:73 - Argument is incorrect: Expected `str | None`, found `Unknown | tuple[str]`
[error] invalid-argument-type - :146:73 - Argument is incorrect: Expected `str`, found `Unknown | tuple[str]`
[error] invalid-argument-type - :150:36 - Argument is incorrect: Expected `bool`, found `Unknown | tuple[str]`
[error] invalid-argument-type - :150:36 - Argument is incorrect: Expected `set[str]`, found `Unknown | tuple[str]`
[error] invalid-argument-type - :150:36 - Argument is incorrect: Expected `str | None`, found `Unknown | tuple[str]`
[error] invalid-argument-type - :150:36 - Argument is incorrect: Expected `str`, found `Unknown | tuple[str]`

arviz (https://github.com/arviz-devs/arviz)

arviz/stats/diagnostics.py

[error] unknown-argument - :201:27 - Argument `prob` does not match any known parameter
[error] missing-argument - :204:20 - No argument provided for required parameter `prob`
[error] unknown-argument - :423:40 - Argument `prob` does not match any known parameter
[error] missing-argument - :425:20 - No argument provided for required parameter `prob`

arviz/tests/base_tests/test_data.py

[error] invalid-argument-type - :538:38 - Argument to function `check_multiple_attrs` is incorrect: Expected `dict[str, list[str]]`, found `dict[Unknown | str, Unknown | tuple[str, str] | list[Unknown | str]]`
[error] invalid-argument-type - :554:38 - Argument to function `check_multiple_attrs` is incorrect: Expected `dict[str, list[str]]`, found `dict[Unknown | str, Unknown | tuple[str, str] | list[Unknown | str]]`

arviz/tests/base_tests/test_plots_matplotlib.py

[error] invalid-argument-type - :320:41 - Argument to function `plot_trace` is incorrect: Expected `((...) -> Unknown) | None`, found `Unknown | tuple[str, tuple[str, str]]`
[error] invalid-argument-type - :320:41 - Argument to function `plot_trace` is incorrect: Expected `Sequence[str] | None`, found `Unknown | tuple[str, tuple[str, str]]`
[error] invalid-argument-type - :320:41 - Argument to function `plot_trace` is incorrect: Expected `bool | None`, found `Unknown | tuple[str, tuple[str, str]]`
[error] invalid-argument-type - :320:41 - Argument to function `plot_trace` is incorrect: Expected `bool`, found `Unknown | tuple[str, tuple[str, str]]`
[error] invalid-argument-type - :320:41 - Argument to function `plot_trace` is incorrect: Expected `bool`, found `Unknown | tuple[str, tuple[str, str]]`
[error] invalid-argument-type - :320:41 - Argument to function `plot_trace` is incorrect: Expected `bool`, found `Unknown | tuple[str, tuple[str, str]]`
[error] invalid-argument-type - :320:41 - Argument to function `plot_trace` is incorrect: Expected `bool`, found `Unknown | tuple[str, tuple[str, str]]`
[error] invalid-argument-type - :320:41 - Argument to function `plot_trace` is incorrect: Expected `list[str] | None`, found `Unknown | tuple[str, tuple[str, str]]`
[error] invalid-argument-type - :320:41 - Argument to function `plot_trace` is incorrect: Expected `list[tuple[str, Unknown, Any]] | None`, found `Unknown | tuple[str, tuple[str, str]]`
[error] invalid-argument-type - :320:41 - Argument to function `plot_trace` is incorrect: Expected `str | Mapping[str, Any] | None`, found `Unknown | tuple[str, tuple[str, str]]`
[error] invalid-argument-type - :320:41 - Argument to function `plot_trace` is incorrect: Expected `str | Mapping[str, Any] | None`, found `Unknown | tuple[str, tuple[str, str]]`
[error] invalid-argument-type - :320:41 - Argument to function `plot_trace` is incorrect: Expected `str | None`, found `Unknown | tuple[str, tuple[str, str]]`
[error] invalid-argument-type - :320:41 - Argument to function `plot_trace` is incorrect: Expected `str | None`, found `Unknown | tuple[str, tuple[str, str]]`
[error] invalid-argument-type - :320:41 - Argument to function `plot_trace` is incorrect: Expected `str | None`, found `Unknown | tuple[str, tuple[str, str]]`
[error] invalid-argument-type - :320:41 - Argument to function `plot_trace` is incorrect: Expected `str | None`, found `Unknown | tuple[str, tuple[str, str]]`
[error] invalid-argument-type - :320:41 - Argument to function `plot_trace` is incorrect: Expected `str`, found `Unknown | tuple[str, tuple[str, str]]`
[error] invalid-argument-type - :320:41 - Argument to function `plot_trace` is incorrect: Expected `tuple[int | float, int | float] | None`, found `Unknown | tuple[str, tuple[str, str]]`

arviz/tests/helpers.py

[error] invalid-argument-type - :84:71 - Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | int`
[error] invalid-argument-type - :99:67 - Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | int`

doc/sphinxext/gallery_generator.py

[warning] possibly-missing-attribute - :386:17 -
Old: Attribute `get` on type `Unknown | None` may be missing
New: Attribute `append` on type `Unknown | None` may be missing
[warning] possibly-missing-attribute - :386:17 - Attribute `get` on type `Unknown | dict[@Todo, @Todo] | None` may be missing
[warning] possibly-missing-attribute - :389:17 -
Old: Attribute `get` on type `Unknown | None` may be missing
New: Attribute `append` on type `Unknown | None` may be missing
[warning] possibly-missing-attribute - :389:17 - Attribute `get` on type `Unknown | dict[@Todo, @Todo] | None` may be missing
[warning] possibly-missing-attribute - :401:30 -
Old: Attribute `items` on type `Unknown | None` may be missing
New: Attribute `items` on type `Unknown | dict[@Todo, @Todo] | None` may be missing
[warning] possibly-missing-attribute - :408:30 -
Old: Attribute `items` on type `Unknown | None` may be missing
New: Attribute `items` on type `Unknown | dict[@Todo, @Todo] | None` may be missing

attrs (https://github.com/python-attrs/attrs)

src/attr/_funcs.py

[error] invalid-argument-type - :487:44 - Argument to function `get_type_hints` is incorrect: Expected `Mapping[str, Any] | None`, found `Unknown | None | bool`
[error] invalid-argument-type - :487:44 - Argument to function `get_type_hints` is incorrect: Expected `bool`, found `Unknown | None | bool`
[error] invalid-argument-type - :487:44 - Argument to function `get_type_hints` is incorrect: Expected `dict[str, Any] | None`, found `Unknown | None | bool`

src/attr/_make.py

[error] invalid-return-type - :261:12 -
Old: Return type does not match returned value: expected `dict[str, Any]`, found `dict[@Todo, @Todo] | Mapping[str, object]`
New: Return type does not match returned value: expected `dict[str, Any]`, found `dict[Unknown, Unknown] | Mapping[str, object]`

tests/test_make.py

[error] no-matching-overload - :587:13 - No overload of function `attrs` matches arguments

tests/test_next_gen.py

[error] invalid-argument-type - :444:25 -
Old: Argument is incorrect: Expected `int`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `int`, found `dict[Unknown | tuple[int], Unknown | int]`

bandersnatch (https://github.com/pypa/bandersnatch)

src/bandersnatch/simple.py

[warning] possibly-missing-attribute - :222:13 - Attribute `append` on type `Any | list[Unknown] | dict[Unknown | str, Unknown | str] | str` may be missing
[warning] possibly-missing-attribute - :290:25 - Attribute `append` on type `Any | dict[Unknown | str, Unknown | int] | list[Unknown]` may be missing

beartype (https://github.com/beartype/beartype)

beartype/_check/code/_pep/pep484585/codepep484585container.py

[warning] unused-ignore-comment - :97:77 - Unused blanket `type: ignore` directive

bokeh (https://github.com/bokeh/bokeh)

src/bokeh/embed/util.py

[error] invalid-assignment - :326:13 - Method `__setitem__` of type `bound method dict[Model, Unknown].__setitem__(key: Model, value: Unknown, /) -> None` cannot be called with a key of type `~Document & ~None` and a value of type `Unknown` on object of type `dict[Model, Unknown]`

cki-lib (https://gitlab.com/cki-project/cki-lib)

cki_lib/session.py

[error] invalid-argument-type - :110:23 - Argument to bound method `__init__` is incorrect: Expected `Collection[int] | None`, found `Any | int`
[error] invalid-argument-type - :110:23 - Argument to bound method `__init__` is incorrect: Expected `Collection[str] | None`, found `Any | int`
[error] invalid-argument-type - :110:23 - Argument to bound method `__init__` is incorrect: Expected `Collection[str]`, found `Any | int`
[error] invalid-argument-type - :110:23 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Any | int`
[error] invalid-argument-type - :110:23 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Any | int`
[error] invalid-argument-type - :110:23 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Any | int`
[error] invalid-argument-type - :110:23 - Argument to bound method `__init__` is incorrect: Expected `tuple[RequestHistory, ...] | None`, found `Any | int`
[error] invalid-argument-type - :113:23 - Argument to bound method `__init__` is incorrect: Expected `Collection[int] | None`, found `Any | int`
[error] invalid-argument-type - :113:23 - Argument to bound method `__init__` is incorrect: Expected `Collection[str] | None`, found `Any | int`
[error] invalid-argument-type - :113:23 - Argument to bound method `__init__` is incorrect: Expected `Collection[str]`, found `Any | int`
[error] invalid-argument-type - :113:23 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Any | int`
[error] invalid-argument-type - :113:23 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Any | int`
[error] invalid-argument-type - :113:23 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Any | int`
[error] invalid-argument-type - :113:23 - Argument to bound method `__init__` is incorrect: Expected `tuple[RequestHistory, ...] | None`, found `Any | int`

tests/test_misc.py

[error] invalid-argument-type - :442:71 - Argument to bound method `add_argument` is incorrect: Expected `Iterable[Unknown] | None`, found `Unknown | str | timedelta`
[error] invalid-argument-type - :442:71 - Argument to bound method `add_argument` is incorrect: Expected `bool`, found `Unknown | str | timedelta`
[error] invalid-argument-type - :442:71 - Argument to bound method `add_argument` is incorrect: Expected `int | str | None`, found `Unknown | str | timedelta`
[error] invalid-argument-type - :442:71 - Argument to bound method `add_argument` is incorrect: Expected `str | None`, found `Unknown | str | timedelta`
[error] invalid-argument-type - :442:71 - Argument to bound method `add_argument` is incorrect: Expected `str | None`, found `Unknown | str | timedelta`
[error] invalid-argument-type - :442:71 - Argument to bound method `add_argument` is incorrect: Expected `str | tuple[str, ...] | None`, found `Unknown | str | timedelta`
[error] invalid-argument-type - :442:71 - Argument to bound method `add_argument` is incorrect: Expected `str | type[Action]`, found `Unknown | str | timedelta`
[error] invalid-argument-type - :442:71 - Argument to bound method `add_argument` is incorrect: Expected `str`, found `Unknown | str | timedelta`

tests/test_s3bucket.py

[warning] possibly-missing-attribute - :49:26 - Attribute `signature_version` on type `Unknown | (Unknown & ~AlwaysFalsy) | None` may be missing
[warning] possibly-missing-attribute - :57:27 - Attribute `signature_version` on type `Unknown | (Unknown & ~AlwaysFalsy) | None` may be missing
[warning] possibly-missing-attribute - :65:26 - Attribute `signature_version` on type `Unknown | (Unknown & ~AlwaysFalsy) | None` may be missing

tests/test_session.py

[error] invalid-argument-type - :147:49 - Argument to function `get_session` is incorrect: Expected `Logger | None`, found `Unknown | int`
[error] invalid-argument-type - :147:49 - Argument to function `get_session` is incorrect: Expected `bool`, found `Unknown | int`
[error] invalid-argument-type - :147:49 - Argument to function `get_session` is incorrect: Expected `dict[str, Any] | None`, found `Unknown | int`
[error] invalid-argument-type - :147:49 - Argument to function `get_session` is incorrect: Expected `dict[str, str] | None`, found `Unknown | int`
[error] invalid-argument-type - :147:85 - Argument to bound method `get` is incorrect: Expected `bool | None`, found `Unknown | int`
[error] invalid-argument-type - :147:85 - Argument to bound method `get` is incorrect: Expected `bool`, found `Unknown | int`

cloud-init (https://github.com/canonical/cloud-init)

cloudinit/cmd/status.py

[warning] possibly-missing-attribute - :204:37 - Attribute `items` on type `(Any & ~AlwaysFalsy) | (str & ~AlwaysFalsy) | (list[str] & ~AlwaysFalsy) | (dict[str, list[str]] & ~AlwaysFalsy)` may be missing

cloudinit/distros/bsd.py

[warning] possibly-missing-attribute - :98:13 - Attribute `append` on type `Unknown | list[Unknown] | int` may be missing

cloudinit/net/cmdline.py

[warning] possibly-missing-attribute - :185:9 - Attribute `append` on type `Unknown | str | list[Unknown]` may be missing

cloudinit/net/eni.py

[warning] possibly-missing-implicit-call - :614:13 - Method `__setitem__` of type `Any | str | dict[Unknown | str, Unknown | str]` may be missing
[warning] possibly-missing-implicit-call - :618:13 - Method `__setitem__` of type `Any | str | dict[Unknown | str, Unknown | str]` may be missing

cloudinit/net/renderers.py

[warning] possibly-missing-attribute - :58:12 - Attribute `available` on type `Unknown | ModuleType` may be missing
[warning] possibly-missing-attribute - :59:26 - Attribute `Renderer` on type `Unknown | ModuleType` may be missing

cloudinit/sources/helpers/openstack.py

[error] unsupported-operator - :299:12 - Operator `in` is not supported for types `str` and `int`, in comparing `Literal["random_seed"]` with `Unknown | str | int`
[error] non-subscriptable - :300:27 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :300:27 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["random_seed"]` on object of type `str`
[warning] possibly-missing-implicit-call - :302:17 - Method `__setitem__` of type `Unknown | str | int` may be missing
[warning] possibly-missing-attribute - :310:26 - Attribute `get` on type `Unknown | str | int` may be missing
[warning] possibly-missing-attribute - :326:20 - Attribute `get` on type `Unknown | str | int` may be missing
[error] non-subscriptable - :341:33 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :341:33 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["meta"]` on object of type `str`
[error] unsupported-operator - :350:32 - Operator `not in` is not supported for types `Unknown` and `int`, in comparing `Unknown | Literal["hostname", "uuid"]` with `Unknown | str | int`
[error] unsupported-operator - :352:16 - Operator `in` is not supported for types `Unknown` and `int`, in comparing `Unknown | Literal["hostname", "uuid"]` with `Unknown | str | int`
[warning] possibly-missing-implicit-call - :353:17 - Method `__setitem__` of type `Unknown | str | int` may be missing
[warning] possibly-missing-attribute - :353:40 - Attribute `get` on type `Unknown | str | int` may be missing

cloudinit/sources/helpers/vultr.py

[warning] possibly-missing-attribute - :176:9 - Attribute `append` on type `Unknown | int | list[Unknown | dict[Unknown | str, Unknown | str | list[Unknown | str]]]` may be missing
[warning] possibly-missing-attribute - :187:9 - Attribute `append` on type `Unknown | int | list[Unknown | dict[Unknown | str, Unknown | str | list[Unknown | str]]]` may be missing

tests/unittests/net/test_init.py

[error] invalid-argument-type - :853:57 - Argument to bound method `__init__` is incorrect: Expected `dict[Unknown, Unknown]`, found `Unknown | str | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str]] | bool]]`
[error] invalid-argument-type - :896:49 - Argument to bound method `__init__` is incorrect: Expected `dict[Unknown, Unknown]`, found `Unknown | str | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str]] | bool]]`
[error] invalid-argument-type - :975:49 - Argument to bound method `__init__` is incorrect: Expected `dict[Unknown, Unknown]`, found `Unknown | str | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str]] | bool]]`
[error] invalid-argument-type - :992:53 - Argument to bound method `__init__` is incorrect: Expected `dict[Unknown, Unknown]`, found `Unknown | str | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str]] | bool]]`
[error] invalid-argument-type - :1105:49 - Argument to bound method `__init__` is incorrect: Expected `dict[Unknown, Unknown]`, found `Unknown | str | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str]] | bool]]`
[error] invalid-argument-type - :1219:49 - Argument to bound method `__init__` is incorrect: Expected `dict[Unknown, Unknown]`, found `Unknown | str | list[Unknown | tuple[str, str]] | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str]] | bool]]`

tests/unittests/net/test_network_state.py

[warning] possibly-missing-attribute - :216:26 - Attribute `Renderer` on type `Unknown | ModuleType` may be missing

tests/unittests/sources/test_cloudsigma.py

[error] non-subscriptable - :70:13 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :70:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["ssh_public_key"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :70:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["ssh_public_key"]` on object of type `list[Unknown]`
[error] invalid-argument-type - :70:13 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["ssh_public_key"]` on object of type `str`
[error] non-subscriptable - :90:35 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :90:35 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["cloudinit-user-data"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :90:35 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["cloudinit-user-data"]` on object of type `list[Unknown]`
[error] invalid-argument-type - :90:35 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["cloudinit-user-data"]` on object of type `str`
[error] invalid-assignment - :94:9 - Method `__setitem__` of type `Unknown | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown], /) -> None]) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["base64_fields"]` and a value of type `Literal["cloudinit-user-data"]` on object of type `Unknown | int | dict[Unknown | str, Unknown | str] | str | list[Unknown] | list[Unknown | str]`
[error] invalid-assignment - :95:9 - Method `__setitem__` of type `Unknown | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown], /) -> None]) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["cloudinit-user-data"]` and a value of type `Literal["aGkgd29ybGQK"]` on object of type `Unknown | int | dict[Unknown | str, Unknown | str] | str | list[Unknown] | list[Unknown | str]`
[error] non-subscriptable - :103:37 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :103:37 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["cloudinit"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :103:37 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["cloudinit"]` on object of type `list[Unknown]`
[error] invalid-argument-type - :103:37 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["cloudinit"]` on object of type `str`
[error] non-subscriptable - :115:13 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :115:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["cloudinit"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :115:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["cloudinit"]` on object of type `list[Unknown]`
[error] invalid-argument-type - :115:13 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["cloudinit"]` on object of type `str`

tests/unittests/sources/test_lxd.py

[error] non-subscriptable - :40:5 - Cannot subscript object of type `int` with no `__getitem__` method

tests/unittests/sources/test_nocloud.py

[warning] possibly-missing-attribute - :52:16 - Attribute `get` on type `Unknown | dict[Unknown, Unknown] | str | None` may be missing
[warning] possibly-missing-attribute - :170:16 - Attribute `get` on type `Unknown | dict[Unknown, Unknown] | str | None` may be missing

tests/unittests/sources/test_vultr.py

[warning] possibly-missing-implicit-call - :322:9 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | str] | str | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | list[Unknown] | str] | dict[Unknown | str, Unknown | list[Unknown | dict[Unknown | str, Unknown | str]] | str] | str] | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | list[Unknown] | str] | str]` may be missing
[warning] possibly-missing-attribute - :324:9 - Attribute `pop` on type `Unknown | int | list[Unknown | dict[Unknown | str, Unknown | str | list[Unknown | str]] | dict[Unknown | str, Unknown | str | int | list[Unknown | dict[Unknown | str, Unknown | str]]] | dict[Unknown | str, Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str]]]]` may be missing

tests/unittests/test_builtin_handlers.py

[warning] possibly-missing-implicit-call - :343:9 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | str] | str` may be missing

cloudinit/cmd/main.py

[error] non-subscriptable - :945:8 - Cannot subscript object of type `None` with no `__getitem__` method
[error] non-subscriptable - :945:34 - Cannot subscript object of type `None` with no `__getitem__` method
[warning] possibly-missing-implicit-call - :952:5 - Method `__setitem__` of type `Unknown | None | dict[Unknown | str, Unknown | list[Unknown] | dict[Unknown, Unknown] | None]` may be missing
[warning] possibly-missing-attribute - :975:9 - Attribute `extend` on type `Unknown | list[Unknown] | dict[Unknown, Unknown] | None` may be missing
[error] non-subscriptable - :975:9 - Cannot subscript object of type `None` with no `__getitem__` method
[warning] possibly-missing-attribute - :979:9 - Attribute `append` on type `Unknown | list[Unknown] | dict[Unknown, Unknown] | None` may be missing
[error] non-subscriptable - :979:9 - Cannot subscript object of type `None` with no `__getitem__` method
[warning] possibly-missing-attribute - :989:13 - Attribute `append` on type `Unknown | list[Unknown] | dict[Unknown, Unknown] | None` may be missing
[error] non-subscriptable - :989:13 - Cannot subscript object of type `None` with no `__getitem__` method
[warning] possibly-missing-implicit-call - :995:9 - Method `__setitem__` of type `Unknown | None | dict[Unknown | str, Unknown | list[Unknown] | dict[Unknown, Unknown] | None]` may be missing
[error] non-subscriptable - :1003:17 - Cannot subscript object of type `None` with no `__getitem__` method
[warning] possibly-missing-implicit-call - :1003:17 - Method `__setitem__` of type `Unknown | list[Unknown] | dict[Unknown, Unknown] | None` may be missing
[error] non-subscriptable - :1010:17 - Cannot subscript object of type `None` with no `__getitem__` method
[warning] possibly-missing-implicit-call - :1010:17 - Method `__setitem__` of type `Unknown | list[Unknown] | dict[Unknown, Unknown] | None` may be missing
[warning] possibly-missing-attribute - :1021:44 - Attribute `get` on type `Unknown | None | dict[Unknown | str, Unknown | list[Unknown] | dict[Unknown, Unknown] | None]` may be missing
[error] invalid-argument-type - :1022:31 - Argument to bound method `extend` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | list[Unknown] | dict[Unknown, Unknown] | None`
[warning] possibly-missing-attribute - :1022:31 - Attribute `get` on type `Unknown | None | dict[Unknown | str, Unknown | list[Unknown] | dict[Unknown, Unknown] | None]` may be missing
[error] invalid-argument-type - :1032:16 - Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | list[Unknown] | dict[Unknown, Unknown] | None`
[error] non-subscriptable - :1032:16 - Cannot subscript object of type `None` with no `__getitem__` method

cloudinit/distros/alpine.py

[error] not-iterable - :325:27 - Object of type `Any | list[Unknown] | None` may not be iterable
[error] invalid-argument-type - :393:44 - Argument to bound method `fromisoformat` is incorrect: Expected `str`, found `(Any & ~None) | list[Unknown]`
[error] invalid-assignment - :401:17 - Method `__setitem__` of type `Overload[(key: SupportsIndex, value: str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[str], /) -> None]` cannot be called with a key of type `Literal[6]` and a value of type `(Any & ~None) | list[Unknown]` on object of type `list[str]`

cloudinit/netinfo.py

[warning] possibly-missing-attribute - :86:17 - Attribute `append` on type `Unknown | str | bool | list[Unknown]` may be missing
[warning] possibly-missing-attribute - :100:17 - Attribute `append` on type `Unknown | str | bool | list[Unknown]` may be missing

cloudinit/sources/DataSourceAzure.py

[warning] possibly-missing-attribute - :2120:17 - Attribute `append` on type `Any | bool | dict[Unknown | str, Unknown] | list[Unknown]` may be missing
[warning] possibly-missing-implicit-call - :2131:13 - Method `__setitem__` of type `Any | int | dict[Unknown, Unknown]` may be missing

cloudinit/sources/DataSourceEc2.py

[warning] possibly-missing-implicit-call - :1148:9 - Method `__setitem__` of type `Unknown | int | dict[Unknown, Unknown]` may be missing
[error] invalid-argument-type - :1151:12 - Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | int | dict[Unknown, Unknown]`
[warning] possibly-missing-attribute - :1152:25 - Attribute `keys` on type `Unknown | int | dict[Unknown, Unknown]` may be missing
[error] non-subscriptable - :1153:13 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :1154:13 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :1155:13 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :1156:13 - Cannot subscript object of type `int` with no `__getitem__` method
[warning] possibly-missing-implicit-call - :1081:9 - Method `__setitem__` of type `Unknown | int | dict[Unknown, Unknown]` may be missing

cloudinit/sources/DataSourceNoCloud.py

[warning] possibly-missing-implicit-call - :120:13 - Method `__setitem__` of type `Unknown | dict[Unknown, Unknown] | str | None` may be missing
[error] unsupported-operator - :171:12 - Operator `in` is not supported for types `str` and `None`, in comparing `Literal["seedfrom"]` with `Unknown | dict[Unknown, Unknown] | str | None`
[error] non-subscriptable - :172:24 - Cannot subscript object of type `None` with no `__getitem__` method
[error] invalid-argument-type - :172:24 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["seedfrom"]` on object of type `str`
[error] invalid-argument-type - :192:17 - Argument to function `mergemanydict` is incorrect: Expected `Sequence[Mapping[Unknown, Unknown]]`, found `list[Unknown | dict[Unknown, Unknown] | str | None]`
[error] invalid-argument-type - :201:13 - Argument to function `mergemanydict` is incorrect: Expected `Sequence[Mapping[Unknown, Unknown]]`, found `list[Unknown | dict[Unknown, Unknown] | str | None | dict[Unknown | str, Unknown | str]]`
[warning] possibly-missing-attribute - :205:14 - Attribute `get` on type `Unknown | dict[Unknown, Unknown] | str | None` may be missing
[warning] possibly-missing-attribute - :219:29 - Attribute `get` on type `Unknown | dict[Unknown, Unknown] | str | None` may be missing

cloudinit/sources/DataSourceOracle.py

[error] invalid-argument-type - :215:17 -
Old: Argument to bound method `__init__` is incorrect: Expected `list[dict[str, Any]] | None`, found `tuple[dict[@Todo, @Todo], dict[@Todo, @Todo], dict[@Todo, @Todo], dict[@Todo, @Todo]]`
New: Argument to bound method `__init__` is incorrect: Expected `list[dict[str, Any]] | None`, found `tuple[dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str]], dict[Unknown | str, Unknown | str], dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str]], dict[Unknown | str, Unknown | str]]`

cloudinit/sources/DataSourceSmartOS.py

[error] call-non-callable - :955:32 - Object of type `None` is not callable

cloudinit/sources/helpers/aliyun.py

[warning] possibly-missing-implicit-call - :202:9 - Method `__setitem__` of type `Unknown | int | dict[Unknown, Unknown]` may be missing
[error] invalid-argument-type - :205:12 - Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | int | dict[Unknown, Unknown]`
[warning] possibly-missing-attribute - :206:25 - Attribute `keys` on type `Unknown | int | dict[Unknown, Unknown]` may be missing
[error] non-subscriptable - :207:13 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :208:13 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :209:13 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :210:13 - Cannot subscript object of type `int` with no `__getitem__` method
[warning] possibly-missing-implicit-call - :174:9 - Method `__setitem__` of type `Unknown | int | dict[Unknown, Unknown]` may be missing

cloudinit/url_helper.py

[warning] possibly-missing-attribute - :554:65 - Attribute `get` on type `Unknown | bool` may be missing
[error] invalid-argument-type - :572:40 - Argument to bound method `request` is incorrect: Expected `str | bytes`, found `Unknown | bool`
[error] invalid-argument-type - :572:40 - Argument to bound method `request` is incorrect: Expected `str | bytes`, found `Unknown | bool`

tests/integration_tests/clouds.py

[error] unsupported-operator - :147:16 - Operator `in` is not supported for types `str` and `None`, in comparing `Literal["token"]` with `Unknown | None | str`
[error] no-matching-overload - :148:54 - No overload of function `sub` matches arguments

tests/unittests/config/test_apt_configure_sources_list_v3.py

[error] non-subscriptable - :437:13 - Cannot subscript object of type `bool` with no `__getitem__` method

tests/unittests/config/test_cc_ansible.py

[warning] possibly-missing-attribute - :377:9 - Attribute `pop` on type `Any | str | dict[Unknown | str, Unknown | list[Unknown | list[Unknown | str]]] | dict[Unknown | str, Unknown | str | list[Unknown | str] | bool]` may be missing
[error] invalid-argument-type - :378:43 - Argument to function `filter_args` is incorrect: Expected `dict[Unknown, Unknown]`, found `Any | str | dict[Unknown | str, Unknown | list[Unknown | list[Unknown | str]]] | dict[Unknown | str, Unknown | str | list[Unknown | str] | bool]`

tests/unittests/distros/test_netconfig.py

[error] non-subscriptable - :422:9 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :445:9 - Cannot subscript object of type `int` with no `__getitem__` method
[warning] possibly-missing-implicit-call - :445:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str]` may be missing

tests/unittests/helpers.py

[error] invalid-assignment - :421:5 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None]) | (Overload[(key: SupportsIndex, value: Unknown, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown], /) -> None]) | (bound method dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str] | str | dict[Unknown | str, Unknown | None]].__setitem__(key: Unknown | str, value: Unknown | dict[Unknown | str, Unknown | str] | str | dict[Unknown | str, Unknown | None], /) -> None) | (bound method dict[Unknown | str, Unknown | bool | list[Unknown]].__setitem__(key: Unknown | str, value: Unknown | bool | list[Unknown], /) -> None)` cannot be called with a key of type `Literal["distro"]` and a value of type `Unknown` on object of type `(Unknown & ~None) | Unknown | list[Unknown | str] | str | list[Unknown] | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str] | str | dict[Unknown | str, Unknown | None]] | dict[Unknown | str, Unknown | bool | list[Unknown]]`
[error] invalid-argument-type - :423:9 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["network"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :423:9 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["network"]` on object of type `list[Unknown]`
[error] invalid-argument-type - :423:9 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["network"]` on object of type `str`
[error] invalid-assignment - :423:9 - Method `__setitem__` of type `@Todo | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (bound method dict[Unknown | str, Unknown | None].__setitem__(key: Unknown | str, value: Unknown | None, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown], /) -> None])` cannot be called with a key of type `Literal["renderers"]` and a value of type `Unknown & ~AlwaysFalsy` on object of type `@Todo | dict[Unknown | str, Unknown | str] | str | dict[Unknown | str, Unknown | None] | bool | list[Unknown]`
[error] invalid-argument-type - :425:9 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["network"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :425:9 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["network"]` on object of type `list[Unknown]`
[error] invalid-argument-type - :425:9 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["network"]` on object of type `str`
[error] invalid-assignment - :425:9 - Method `__setitem__` of type `@Todo | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (bound method dict[Unknown | str, Unknown | None].__setitem__(key: Unknown | str, value: Unknown | None, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown], /) -> None])` cannot be called with a key of type `Literal["activators"]` and a value of type `Unknown & ~AlwaysFalsy` on object of type `@Todo | dict[Unknown | str, Unknown | str] | str | dict[Unknown | str, Unknown | None] | bool | list[Unknown]`
[error] invalid-argument-type - :426:27 - Argument to bound method `__init__` is incorrect: Expected `dict[Unknown, Unknown]`, found `@Todo | dict[Unknown | str, Unknown | str] | str | dict[Unknown | str, Unknown | None] | bool | list[Unknown]`
[error] invalid-argument-type - :426:27 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["paths"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :426:27 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["paths"]` on object of type `list[Unknown]`
[error] invalid-argument-type - :426:27 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["paths"]` on object of type `str`

tests/unittests/sources/test_azure.py

[warning] possibly-missing-attribute - :1608:9 - Attribute `append` on type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str]] | list[Unknown | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | list[Unknown]] | dict[Unknown | str, Unknown | list[Unknown | dict[Unknown | str, Unknown | str]]]]]` may be missing
[warning] possibly-missing-attribute - :1610:36 - Attribute `replace` on type `Unknown | str | dict[Unknown | str, Unknown | list[Unknown]] | dict[Unknown | str, Unknown | list[Unknown | dict[Unknown | str, Unknown | str]]]` may be missing
[error] invalid-argument-type - :1611:9 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["subnet"]` on object of type `str`
[error] invalid-argument-type - :1612:9 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["ipAddress"]` on object of type `str`
[warning] possibly-missing-attribute - :1613:9 - Attribute `append` on type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str]] | list[Unknown | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | list[Unknown]] | dict[Unknown | str, Unknown | list[Unknown | dict[Unknown | str, Unknown | str]]]]]` may be missing
[warning] possibly-missing-attribute - :1642:9 - Attribute `append` on type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str]] | list[Unknown | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | list[Unknown]] | dict[Unknown | str, Unknown | list[Unknown | dict[Unknown | str, Unknown | str]]]]]` may be missing
[warning] possibly-missing-implicit-call - :2217:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str] | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | list[Unknown]] | dict[Unknown | str, Unknown | list[Unknown | dict[Unknown | str, Unknown | str]]]]` may be missing

tests/unittests/sources/test_configdrive.py

[error] invalid-argument-type - :644:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str]]]` cannot be called with key of type `Literal["mykey"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str]]`
[error] invalid-argument-type - :644:13 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["mykey"]` on object of type `str`

tests/unittests/sources/test_digitalocean.py

[error] non-subscriptable - :411:38 - Cannot subscript object of type `None` with no `__getitem__` method
[error] non-subscriptable - :411:38 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :411:38 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["nameservers"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :411:38 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["nameservers"]` on object of type `str`

tests/unittests/sources/test_ec2.py

[warning] possibly-missing-attribute - :664:21 - Attribute `get` on type `Unknown | str | dict[Unknown | str, Unknown | str] | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str]]]]] | dict[Unknown | str, Unknown | list[Unknown | str]]` may be missing
[warning] possibly-missing-attribute - :665:31 - Attribute `get` on type `Unknown | str | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str]]]] | list[Unknown | str]` may be missing
[error] invalid-argument-type - :1432:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["macs"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :1432:13 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["interfaces"]` on object of type `str`
[error] invalid-argument-type - :1432:13 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["macs"]` on object of type `str`

tests/unittests/sources/test_gce.py

[error] invalid-argument-type - :163:13 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["user-data"]` on object of type `str`
[warning] possibly-missing-attribute - :136:21 -
Old: Attribute `split` on type `Unknown | None` may be missing
New: Attribute `split` on type `Unknown | str | None` may be missing
[warning] possibly-missing-attribute - :154:21 -
Old: Attribute `split` on type `Unknown | None` may be missing
New: Attribute `split` on type `Unknown | str | None` may be missing
[warning] possibly-missing-attribute - :174:29 -
Old: Attribute `get` on type `Unknown | None` may be missing
New: Attribute `get` on type `Unknown | str | dict[Unknown | str, Unknown | str] | None` may be missing

tests/unittests/sources/test_init.py

[error] invalid-assignment - :951:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None)` cannot be called with a key of type `Literal["secure"]` and a value of type `Literal["redacted"]` on object of type `Unknown | list[Unknown | str] | dict[Unknown | str, Unknown | str]`
[error] invalid-assignment - :961:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None)` cannot be called with a key of type `Literal["secure"]` and a value of type `Literal["redacted for non-root user"]` on object of type `Unknown | list[Unknown | str] | dict[Unknown | str, Unknown | str]`
[error] invalid-assignment - :759:9 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to attribute `network_json` of type `str | None`
New: Object of type `dict[Unknown | str, Unknown | str]` is not assignable to attribute `network_json` of type `str | None`
[error] invalid-assignment - :778:9 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to attribute `network_json` of type `str | None`
New: Object of type `dict[Unknown | str, Unknown | str]` is not assignable to attribute `network_json` of type `str | None`

tests/unittests/sources/test_maas.py

[warning] possibly-missing-attribute - :146:16 - Attribute `decode` on type `Unknown | str | bytes` may be missing

tests/unittests/sources/test_smartos.py

[error] unsupported-operator - :509:38 - Operator `+` is unsupported between objects of type `Literal["sdc-"]` and `Unknown | str | None`
[error] unsupported-operator - :518:38 - Operator `+` is unsupported between objects of type `Literal["sdc-"]` and `Unknown | str | None`
[error] invalid-argument-type - :549:24 - Argument to function `loads` is incorrect: Expected `str | bytes | bytearray`, found `Unknown | str | None`

tests/unittests/test_ds_identify.py

[warning] possibly-missing-attribute - :471:19 - Attribute `split` on type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]` may be missing
[error] invalid-assignment - :934:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str | int], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str | int]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["etc/cloud/cloud.cfg.d/99_networklayer_common.cfg"]` and a value of type `Literal["datasource_list: [ ConfigDrive, IBMCloud ]\n"]` on object of type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]`
[error] invalid-assignment - :939:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str | int], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str | int]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["etc/cloud/cloud.cfg.d/99_networklayer_common.cfg"]` and a value of type `Literal["datasource_list: [ ConfigDrive, NoCloud ]\n"]` on object of type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]`
[error] invalid-argument-type - :951:41 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["name"]` on object of type `str`
[warning] possibly-missing-attribute - :961:9 - Attribute `append` on type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]` may be missing
[warning] possibly-missing-attribute - :1002:9 - Attribute `update` on type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]` may be missing
[warning] possibly-missing-attribute - :1018:9 - Attribute `update` on type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]` may be missing
[error] invalid-assignment - :1037:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str | int], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str | int]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Unknown | Literal["etc/cloud/ds-identify.cfg"]` and a value of type `LiteralString` on object of type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]`
[error] invalid-assignment - :1048:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str | int], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str | int]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["etc/cloud/cloud.cfg.d/myds.cfg"]` and a value of type `Literal["datasource_list: [\"NoCloud\"]\n"]` on object of type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]`
[error] invalid-assignment - :1060:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str | int], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str | int]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["etc/cloud/cloud.cfg.d/myds.cfg"]` and a value of type `Literal["datasource_list: [\"Ec2\", \"None\"]\n"]` on object of type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]`
[error] invalid-argument-type - :1097:21 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str | int], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str | int]]]` cannot be called with key of type `Unknown | Literal["sys/class/dmi/id/product_name"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str | int]]`
[error] invalid-argument-type - :1097:21 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Unknown | Literal["sys/class/dmi/id/product_name"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :1097:21 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Unknown | Literal["sys/class/dmi/id/product_name"]` on object of type `str`
[error] invalid-assignment - :1098:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str | int], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str | int]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Unknown | Literal["sys/class/dmi/id/product_name"]` and a value of type `Unknown | str` on object of type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]`
[error] invalid-argument-type - :1115:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str | int], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str | int]]]` cannot be called with key of type `Unknown | Literal["sys/class/dmi/id/product_name"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str | int]]`
[error] invalid-argument-type - :1115:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Unknown | Literal["sys/class/dmi/id/product_name"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :1115:13 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Unknown | Literal["sys/class/dmi/id/product_name"]` on object of type `str`
[error] invalid-assignment - :1152:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str | int], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str | int]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Unknown | Literal["sys/class/dmi/id/chassis_asset_tag"]` and a value of type `Literal["7783-7084-3265-9085-8269-3286-77\n"]` on object of type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]`
[error] invalid-assignment - :1165:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str | int], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str | int]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["dev/sr0"]` and a value of type `Literal["No content match"]` on object of type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]`
[warning] possibly-missing-implicit-call - :1183:13 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str | int]` may be missing
[error] invalid-assignment - :1208:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str | int], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str | int]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["sys/class/block/sr0/size"]` and a value of type `Literal["20480\n"]` on object of type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]`
[error] invalid-assignment - :1217:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str | int], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str | int]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["sys/class/block/sr0/size"]` and a value of type `Literal["204800\n"]` on object of type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]`
[error] invalid-assignment - :1226:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str | int], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str | int]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["sys/class/block/sr0/size"]` and a value of type `Literal["18432\n"]` on object of type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]`
[error] invalid-assignment - :1235:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str | int], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str | int]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["sys/class/block/sr0/size"]` and a value of type `Literal["2048\n"]` on object of type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]`
[error] invalid-argument-type - :1246:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str | int], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str | int]]]` cannot be called with key of type `Unknown | Literal["/native/.zonecontrol/metadata.sock"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str | int]]`
[error] invalid-argument-type - :1246:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Unknown | Literal["/native/.zonecontrol/metadata.sock"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :1246:13 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Unknown | Literal["/native/.zonecontrol/metadata.sock"]` on object of type `str`
[error] invalid-argument-type - :1254:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str | int], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str | int]]]` cannot be called with key of type `Unknown | Literal["/native/.zonecontrol/metadata.sock"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str | int]]`
[error] invalid-argument-type - :1254:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Unknown | Literal["/native/.zonecontrol/metadata.sock"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :1254:13 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Unknown | Literal["/native/.zonecontrol/metadata.sock"]` on object of type `str`
[error] invalid-assignment - :1267:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str | int], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str | int]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["main-printpath"]` and a value of type `Literal["PATH=\"/mycust/path\"; main; r=$?; echo MYPATH=$PATH; exit $r;"]` on object of type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]`
[error] invalid-assignment - :1291:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str | int], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str | int]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["usr/lib64/open-vm-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` and a value of type `Unknown | str` on object of type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]`
[error] invalid-argument-type - :1291:35 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str | int], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str | int]]]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str | int]]`
[error] invalid-argument-type - :1291:35 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :1291:35 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `str`
[error] invalid-argument-type - :1292:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str | int], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str | int]]]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str | int]]`
[error] invalid-argument-type - :1292:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :1292:13 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `str`
[error] invalid-assignment - :1306:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str | int], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str | int]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["usr/lib/x86_64-linux-gnu/open-vm-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` and a value of type `Unknown | str` on object of type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]`
[error] invalid-argument-type - :1306:32 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str | int], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str | int]]]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str | int]]`
[error] invalid-argument-type - :1306:32 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :1306:32 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `str`
[error] invalid-argument-type - :1307:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str | int], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str | int]]]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str | int]]`
[error] invalid-argument-type - :1307:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :1307:13 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `str`
[error] invalid-assignment - :1321:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str | int], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str | int]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["usr/lib/aarch64-linux-gnu/open-vm-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` and a value of type `Unknown | str` on object of type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]`
[error] invalid-argument-type - :1321:36 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str | int], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str | int]]]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str | int]]`
[error] invalid-argument-type - :1321:36 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :1321:36 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `str`
[error] invalid-argument-type - :1322:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str | int], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str | int]]]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str | int]]`
[error] invalid-argument-type - :1322:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :1322:13 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `str`
[error] invalid-assignment - :1336:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str | int], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str | int]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["usr/lib/i386-linux-gnu/open-vm-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` and a value of type `Unknown | str` on object of type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]`
[error] invalid-argument-type - :1336:33 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str | int], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str | int]]]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str | int]]`
[error] invalid-argument-type - :1336:33 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :1336:33 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `str`
[error] invalid-argument-type - :1337:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str | int], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str | int]]]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str | int]]`
[error] invalid-argument-type - :1337:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :1337:13 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["usr/lib/vmware-tools/plugins/vmsvc/libdeployPkgPlugin.so"]` on object of type `str`
[warning] possibly-missing-implicit-call - :1351:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str | int]` may be missing
[warning] possibly-missing-implicit-call - :1357:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str | int]` may be missing
[error] invalid-assignment - :1416:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str | int], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str | int]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Unknown | Literal["sys/class/dmi/id/chassis_asset_tag"]` and a value of type `Literal["Not Oracle"]` on object of type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]`
[warning] possibly-missing-attribute - :1427:9 - Attribute `append` on type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]` may be missing
[warning] possibly-missing-attribute - :1440:9 - Attribute `append` on type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]` may be missing
[warning] possibly-missing-attribute - :1453:9 - Attribute `append` on type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]` may be missing
[warning] possibly-missing-attribute - :1470:9 - Attribute `append` on type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]` may be missing
[warning] possibly-missing-implicit-call - :1482:17 - Method `__setitem__` of type `Unknown | str` may be missing
[warning] possibly-missing-attribute - :1495:9 - Attribute `append` on type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]` may be missing
[warning] possibly-missing-attribute - :1517:9 - Attribute `append` on type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str] | list[Unknown | str]` may be missing
[warning] possibly-missing-implicit-call - :986:9 - Method `__setitem__` of type `Unknown | str` may be missing

tests/unittests/test_helpers.py

[error] invalid-argument-type - :21:54 -
Old: Argument to bound method `__init__` is incorrect: Expected `Paths`, found `dict[@Todo, @Todo]`
New: Argument to bound method `__init__` is incorrect: Expected `Paths`, found `dict[Unknown, Unknown]`
[error] invalid-argument-type - :32:54 -
Old: Argument to bound method `__init__` is incorrect: Expected `Paths`, found `dict[@Todo, @Todo]`
New: Argument to bound method `__init__` is incorrect: Expected `Paths`, found `dict[Unknown, Unknown]`

tests/unittests/test_net.py

[error] non-subscriptable - :2560:13 - Cannot subscript object of type `int` with no `__getitem__` method
[warning] possibly-missing-attribute - :4229:9 - Attribute `append` on type `Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | list[Unknown | str]]]` may be missing
[warning] possibly-missing-attribute - :4559:13 - Attribute `splitlines` on type `Unknown | dict[Unknown | str, Unknown | str] | str` may be missing
[warning] possibly-missing-attribute - :4856:20 - Attribute `splitlines` on type `Unknown | dict[Unknown | str, Unknown | str] | str` may be missing
[warning] possibly-missing-attribute - :4873:20 - Attribute `splitlines` on type `Unknown | dict[Unknown | str, Unknown | str] | str` may be missing
[warning] possibly-missing-attribute - :4881:20 - Attribute `splitlines` on type `Unknown | dict[Unknown | str, Unknown | str] | str` may be missing
[warning] possibly-missing-attribute - :4898:20 - Attribute `splitlines` on type `Unknown | dict[Unknown | str, Unknown | str] | str` may be missing
[warning] possibly-missing-attribute - :4906:20 - Attribute `splitlines` on type `Unknown | dict[Unknown | str, Unknown | str] | str` may be missing
[warning] possibly-missing-attribute - :4924:13 - Attribute `splitlines` on type `Unknown | dict[Unknown | str, Unknown | str] | str` may be missing
[warning] possibly-missing-attribute - :4939:13 - Attribute `splitlines` on type `Unknown | dict[Unknown | str, Unknown | str] | str` may be missing

colour (https://github.com/colour-science/colour)

colour/recovery/mallett2019.py

[error] no-matching-overload - :206:14 - No overload of function `minimize` matches arguments

colour/recovery/meng2015.py

[error] no-matching-overload - :211:14 - No overload of function `minimize` matches arguments

colour/temperature/cie_d.py

[error] no-matching-overload - :111:13 - No overload of function `minimize` matches arguments

colour/temperature/hernandez1999.py

[error] no-matching-overload - :174:13 - No overload of function `minimize` matches arguments

colour/temperature/kang2002.py

[error] no-matching-overload - :110:13 - No overload of function `minimize` matches arguments

colour/temperature/krystek1985.py

[error] no-matching-overload - :115:13 - No overload of function `minimize` matches arguments

colour/temperature/mccamy1992.py

[error] no-matching-overload - :158:13 - No overload of function `minimize` matches arguments

colour/temperature/planck1900.py

[error] no-matching-overload - :118:13 - No overload of function `minimize` matches arguments

colour/characterisation/aces_it.py

[error] no-matching-overload - :1142:9 - No overload of function `minimize` matches arguments

colour/examples/contrast/examples_contrast.py

[error] invalid-argument-type - :103:50 - Argument to function `contrast_sensitivity_function` is incorrect: Expected `str`, found `Unknown | float | int`

colour/notation/munsell.py

[error] invalid-assignment - :2037:5 - Object of type `dict[Unknown | int, Unknown | None | str]` is not assignable to `dict[int, Literal["Linear", "Radial"] | None]`

colour/plotting/common.py

[error] invalid-argument-type - :1401:17 - Argument to bound method `text` is incorrect: Expected `dict[str, Any] | None`, found `Unknown | float | bool`
[error] invalid-argument-type - :1701:39 - Argument to bound method `imshow` is incorrect: Expected `Colorizer | None`, found `Unknown | str | Colormap`
[error] invalid-argument-type - :1701:39 - Argument to bound method `imshow` is incorrect: Expected `Literal["data", "rgba", "auto"] | None`, found `Unknown | str | Colormap`
[error] invalid-argument-type - :1701:39 - Argument to bound method `imshow` is incorrect: Expected `Literal["equal", "auto"] | int | float | None`, found `Unknown | str | Colormap`
[error] invalid-argument-type - :1701:39 - Argument to bound method `imshow` is incorrect: Expected `Literal["upper", "lower"] | None`, found `Unknown | str | Colormap`
[error] invalid-argument-type - :1701:39 - Argument to bound method `imshow` is incorrect: Expected `bool | None`, found `Unknown | str | Colormap`
[error] invalid-argument-type - :1701:39 - Argument to bound method `imshow` is incorrect: Expected `bool`, found `Unknown | str | Colormap`
[error] invalid-argument-type - :1701:39 - Argument to bound method `imshow` is incorrect: Expected `int | float | None`, found `Unknown | str | Colormap`
[error] invalid-argument-type - :1701:39 - Argument to bound method `imshow` is incorrect: Expected `int | float | None`, found `Unknown | str | Colormap`
[error] invalid-argument-type - :1701:39 - Argument to bound method `imshow` is incorrect: Expected `int | float`, found `Unknown | str | Colormap`
[error] invalid-argument-type - :1701:39 - Argument to bound method `imshow` is incorrect: Expected `str | None`, found `Unknown | str | Colormap`
[error] invalid-argument-type - :1701:39 - Argument to bound method `imshow` is incorrect: Expected `str | None`, found `Unknown | str | Colormap`
[error] invalid-argument-type - :1701:39 - Argument to bound method `imshow` is incorrect: Expected `str | Normalize | None`, found `Unknown | str | Colormap`
[error] invalid-argument-type - :1701:39 - Argument to bound method `imshow` is incorrect: Expected `tuple[int | float, int | float, int | float, int | float] | None`, found `Unknown | str | Colormap`
[error] invalid-argument-type - :1707:13 - Argument to bound method `text` is incorrect: Expected `int | float`, found `Unknown | None | float`
[error] invalid-argument-type - :1708:13 - Argument to bound method `text` is incorrect: Expected `int | float`, found `Unknown | None | float`
[error] invalid-argument-type - :1709:13 - Argument to bound method `text` is incorrect: Expected `str`, found `Unknown | None | float`
[error] invalid-argument-type - :1713:13 - Argument to bound method `text` is incorrect: Expected `dict[str, Any] | None`, found `Unknown | None | float`

colour/plotting/models.py

[error] invalid-argument-type - :442:9 - Argument to bound method `scatter` is incorrect: Expected `Colorizer | None`, found `Unknown | int | float | str | None`
[error] invalid-argument-type - :442:9 - Argument to bound method `scatter` is incorrect: Expected `bool`, found `Unknown | int | float | str | None`
[error] invalid-argument-type - :442:9 - Argument to bound method `scatter` is incorrect: Expected `int | float | None`, found `Unknown | int | float | str | None`
[error] invalid-argument-type - :442:9 - Argument to bound method `scatter` is incorrect: Expected `int | float | None`, found `Unknown | int | float | str | None`
[error] invalid-argument-type - :442:9 - Argument to bound method `scatter` is incorrect: Expected `int | float | None`, found `Unknown | int | float | str | None`
[error] invalid-argument-type - :442:9 - Argument to bound method `scatter` is incorrect: Expected `int | float | Sequence[int | float] | None`, found `Unknown | int | float | str | None`
[error] invalid-argument-type - :442:9 - Argument to bound method `scatter` is incorrect: Expected `str | Colormap | None`, found `Unknown | int | float | str | None`
[error] invalid-argument-type - :442:9 - Argument to bound method `scatter` is incorrect: Expected `str | Normalize | None`, found `Unknown | int | float | str | None`
[error] invalid-argument-type - :1067:21 - Argument to function `RGB_to_RGB` is incorrect: Expected `bool`, found `Unknown | int | str | float`
[error] invalid-argument-type - :1081:42 - Argument to bound method `scatter` is incorrect: Expected `Colorizer | None`, found `Unknown | int | str | float`
[error] invalid-argument-type - :1081:42 - Argument to bound method `scatter` is incorrect: Expected `bool`, found `Unknown | int | str | float`
[error] invalid-argument-type - :1081:42 - Argument to bound method `scatter` is incorrect: Expected `int | float | None`, found `Unknown | int | str | float`
[error] invalid-argument-type - :1081:42 - Argument to bound method `scatter` is incorrect: Expected `int | float | None`, found `Unknown | int | str | float`
[error] invalid-argument-type - :1081:42 - Argument to bound method `scatter` is incorrect: Expected `int | float | None`, found `Unknown | int | str | float`
[error] invalid-argument-type - :1081:42 - Argument to bound method `scatter` is incorrect: Expected `int | float | Sequence[int | float] | None`, found `Unknown | int | str | float`
[error] invalid-argument-type - :1081:42 - Argument to bound method `scatter` is incorrect: Expected `str | Colormap | None`, found `Unknown | int | str | float`
[error] invalid-argument-type - :1081:42 - Argument to bound method `scatter` is incorrect: Expected `str | Normalize | None`, found `Unknown | int | str | float`
[error] invalid-argument-type - :2017:54 - Argument to bound method `scatter` is incorrect: Expected `Colorizer | None`, found `Unknown | int | str | float`
[error] invalid-argument-type - :2017:54 - Argument to bound method `scatter` is incorrect: Expected `bool`, found `Unknown | int | str | float`
[error] invalid-argument-type - :2017:54 - Argument to bound method `scatter` is incorrect: Expected `int | float | None`, found `Unknown | int | str | float`
[error] invalid-argument-type - :2017:54 - Argument to bound method `scatter` is incorrect: Expected `int | float | None`, found `Unknown | int | str | float`
[error] invalid-argument-type - :2017:54 - Argument to bound method `scatter` is incorrect: Expected `int | float | None`, found `Unknown | int | str | float`
[error] invalid-argument-type - :2017:54 - Argument to bound method `scatter` is incorrect: Expected `int | float | Sequence[int | float] | None`, found `Unknown | int | str | float`
[error] invalid-argument-type - :2017:54 - Argument to bound method `scatter` is incorrect: Expected `str | Colormap | None`, found `Unknown | int | str | float`
[error] invalid-argument-type - :2017:54 - Argument to bound method `scatter` is incorrect: Expected `str | Normalize | None`, found `Unknown | int | str | float`

colour/recovery/otsu2018.py

[error] unsupported-operator - :1598:21 - Operator `+=` is unsupported between objects of type `dict[Unknown, Unknown]` and `Literal[1]`
[error] unsupported-operator - :1598:21 - Operator `+=` is unsupported between objects of type `list[Unknown]` and `Literal[1]`
[error] invalid-assignment - :1597:21 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown], /) -> None]) | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None)` cannot be called with a key of type `Node_Otsu2018` and a value of type `Unknown | list[Unknown] | dict[Unknown, Unknown] | int` on object of type `Unknown | list[Unknown] | dict[Unknown, Unknown] | int`
[error] invalid-assignment - :1601:17 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown], /) -> None]) | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None)` cannot be called with a key of type `Node_Otsu2018` and a value of type `int` on object of type `Unknown | list[Unknown] | dict[Unknown, Unknown] | int`
[error] invalid-argument-type - :1601:54 - Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | list[Unknown] | dict[Unknown, Unknown] | int`
[warning] possibly-missing-attribute - :1602:17 - Attribute `append` on type `Unknown | list[Unknown] | dict[Unknown, Unknown] | int` may be missing

comtypes (https://github.com/enthought/comtypes)

comtypes/tools/codegenerator/namespaces.py

[warning] unused-ignore-comment - :125:53 - Unused blanket `type: ignore` directive

core (https://github.com/home-assistant/core)

homeassistant/components/alexa/capabilities.py

[warning] possibly-missing-implicit-call - :227:13 - Method `__setitem__` of type `Any | str | dict[Unknown | str, Unknown | (Unknown & ~AlwaysFalsy)]` may be missing

homeassistant/components/asuswrt/diagnostics.py

[error] invalid-assignment - :65:9 - Method `__setitem__` of type `Unknown | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown], /) -> None])` cannot be called with a key of type `str` and a value of type `dict[Unknown | str, Unknown | None | dict[Unknown, Unknown]]` on object of type `Unknown | dict[Unknown, Unknown] | list[Unknown]`
[warning] possibly-missing-attribute - :76:9 - Attribute `append` on type `Unknown | dict[Unknown, Unknown] | list[Unknown]` may be missing

homeassistant/components/mqtt/diagnostics.py

[warning] possibly-missing-attribute - :115:5 - Attribute `extend` on type `Any | str | None | bool | list[Unknown]` may be missing

homeassistant/components/synology_dsm/diagnostics.py

[error] non-subscriptable - :50:17 - Cannot subscript object of type `bool` with no `__getitem__` method
[error] invalid-assignment - :50:17 - Method `__setitem__` of type `Any | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None) | (bound method dict[str, set[str]].__setitem__(key: str, value: set[str], /) -> None)` cannot be called with a key of type `Unknown` and a value of type `dict[Unknown | str, Unknown]` on object of type `Any | dict[Unknown, Unknown] | dict[str, set[str]]`
[error] non-subscriptable - :60:25 - Cannot subscript object of type `bool` with no `__getitem__` method
[error] invalid-assignment - :60:25 - Method `__setitem__` of type `Any | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None) | (bound method dict[str, set[str]].__setitem__(key: str, value: set[str], /) -> None)` cannot be called with a key of type `Unknown` and a value of type `dict[Unknown | str, Unknown]` on object of type `Any | dict[Unknown, Unknown] | dict[str, set[str]]`
[error] non-subscriptable - :70:13 - Cannot subscript object of type `bool` with no `__getitem__` method
[error] invalid-assignment - :70:13 - Method `__setitem__` of type `Any | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None) | (bound method dict[str, set[str]].__setitem__(key: str, value: set[str], /) -> None)` cannot be called with a key of type `Unknown` and a value of type `dict[Unknown | str, Unknown]` on object of type `Any | dict[Unknown, Unknown] | dict[str, set[str]]`
[error] non-subscriptable - :77:13 - Cannot subscript object of type `bool` with no `__getitem__` method
[error] invalid-assignment - :77:13 - Method `__setitem__` of type `Any | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None) | (bound method dict[str, set[str]].__setitem__(key: str, value: set[str], /) -> None)` cannot be called with a key of type `Unknown` and a value of type `dict[Unknown | str, Unknown]` on object of type `Any | dict[Unknown, Unknown] | dict[str, set[str]]`
[error] non-subscriptable - :87:13 - Cannot subscript object of type `bool` with no `__getitem__` method
[error] invalid-assignment - :87:13 - Method `__setitem__` of type `Any | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None) | (bound method dict[str, set[str]].__setitem__(key: str, value: set[str], /) -> None)` cannot be called with a key of type `Unknown` and a value of type `dict[Unknown | str, Unknown]` on object of type `Any | dict[Unknown, Unknown] | dict[str, set[str]]`
[error] non-subscriptable - :94:13 - Cannot subscript object of type `bool` with no `__getitem__` method
[error] invalid-assignment - :94:13 - Method `__setitem__` of type `Any | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None) | (bound method dict[str, set[str]].__setitem__(key: str, value: set[str], /) -> None)` cannot be called with a key of type `Unknown` and a value of type `dict[Unknown | str, Unknown]` on object of type `Any | dict[Unknown, Unknown] | dict[str, set[str]]`
[warning] possibly-missing-implicit-call - :104:13 - Method `__setitem__` of type `Any | dict[Unknown, Unknown] | dict[Unknown | str, Unknown] | dict[Unknown | str, Unknown | dict[Unknown, Unknown]] | bool | dict[Unknown | str, Unknown | dict[str, set[str]]]` may be missing

homeassistant/auth/auth_store.py

[error] invalid-argument-type - :121:32 - Argument is incorrect: Expected `PermissionLookup`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :121:32 - Argument is incorrect: Expected `bool`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :121:32 - Argument is incorrect: Expected `bool`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :121:32 - Argument is incorrect: Expected `bool`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :121:32 - Argument is incorrect: Expected `bool`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :121:32 - Argument is incorrect: Expected `dict[str, RefreshToken]`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :121:32 - Argument is incorrect: Expected `list[Credentials]`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :121:32 - Argument is incorrect: Expected `list[Group]`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :121:32 - Argument is incorrect: Expected `str | None`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :121:32 - Argument is incorrect: Expected `str`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :124:36 - Argument is incorrect: Expected `PermissionLookup`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :124:36 - Argument is incorrect: Expected `bool`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :124:36 - Argument is incorrect: Expected `bool`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :124:36 - Argument is incorrect: Expected `bool`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :124:36 - Argument is incorrect: Expected `bool`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :124:36 - Argument is incorrect: Expected `dict[str, RefreshToken]`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :124:36 - Argument is incorrect: Expected `list[Credentials]`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :124:36 - Argument is incorrect: Expected `list[Group]`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :124:36 - Argument is incorrect: Expected `str | None`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :124:36 - Argument is incorrect: Expected `str`, found `Any | str | None | list[Unknown]`
[error] invalid-argument-type - :231:45 - Argument is incorrect: Expected `Credentials | None`, found `Any | User | str | None | timedelta | int | float | Credentials`
[error] invalid-argument-type - :231:45 - Argument is incorrect: Expected `User`, found `Any | User | str | None | timedelta | int | float | Credentials`
[error] invalid-argument-type - :231:45 - Argument is incorrect: Expected `datetime | None`, found `Any | User | str | None | timedelta | int | float | Credentials`
[error] invalid-argument-type - :231:45 - Argument is incorrect: Expected `datetime`, found `Any | User | str | None | timedelta | int | float | Credentials`
[error] invalid-argument-type - :231:45 - Argument is incorrect: Expected `int | float | None`, found `Any | User | str | None | timedelta | int | float | Credentials`
[error] invalid-argument-type - :231:45 - Argument is incorrect: Expected `str | None`, found `Any | User | str | None | timedelta | int | float | Credentials`
[error] invalid-argument-type - :231:45 - Argument is incorrect: Expected `str | None`, found `Any | User | str | None | timedelta | int | float | Credentials`
[error] invalid-argument-type - :231:45 - Argument is incorrect: Expected `str | None`, found `Any | User | str | None | timedelta | int | float | Credentials`
[error] invalid-argument-type - :231:45 - Argument is incorrect: Expected `str | None`, found `Any | User | str | None | timedelta | int | float | Credentials`
[error] invalid-argument-type - :231:45 - Argument is incorrect: Expected `str | None`, found `Any | User | str | None | timedelta | int | float | Credentials`
[error] invalid-argument-type - :231:45 - Argument is incorrect: Expected `str`, found `Any | User | str | None | timedelta | int | float | Credentials`
[error] invalid-argument-type - :231:45 - Argument is incorrect: Expected `str`, found `Any | User | str | None | timedelta | int | float | Credentials`
[error] invalid-argument-type - :231:45 - Argument is incorrect: Expected `str`, found `Any | User | str | None | timedelta | int | float | Credentials`
[error] invalid-argument-type - :231:45 - Argument is incorrect: Expected `str`, found `Any | User | str | None | timedelta | int | float | Credentials`
[error] invalid-argument-type - :231:45 - Argument is incorrect: Expected `timedelta`, found `Any | User | str | None | timedelta | int | float | Credentials`

homeassistant/components/apple_tv/__init__.py

[warning] possibly-missing-attribute - :351:13 - Attribute `removesuffix` on type `Unknown | set[Unknown | tuple[Unknown | str, Unknown]] | str` may be missing

homeassistant/components/assist_pipeline/websocket_api.py

[error] invalid-argument-type - :243:40 - Argument is incorrect: Expected `ChatSession`, found `Any | None`
[error] invalid-argument-type - :243:40 - Argument is incorrect: Expected `PipelineRun`, found `Any | None`

homeassistant/components/assist_satellite/__init__.py

[error] invalid-argument-type - :124:69 - Argument to bound method `async_internal_ask_question` is incorrect: Expected `bool`, found `Unknown | None`
[error] invalid-argument-type - :124:69 - Argument to bound method `async_internal_ask_question` is incorrect: Expected `str`, found `Unknown | None`

homeassistant/components/automation/__init__.py

[warning] possibly-missing-attribute - :671:35 - Attribute `get` on type `Any | None` may be missing
[error] unsupported-operator - :675:43 - Operator `in` is not supported for types `str` and `None`, in comparing `Literal["idx"]` with `Any | None`
[error] non-subscriptable - :676:43 - Cannot subscript object of type `None` with no `__getitem__` method
[error] unsupported-operator - :699:43 - Operator `in` is not supported for types `str` and `None`, in comparing `Literal["description"]` with `Any | None`
[error] non-subscriptable - :700:43 - Cannot subscript object of type `None` with no `__getitem__` method

homeassistant/components/bthome/event.py

[error] invalid-argument-type - :70:43 - Argument to function `replace` is incorrect: Argument type `Unknown | EventEntityDescription` does not satisfy upper bound `DataclassInstance` of type variable `_DataclassT`

homeassistant/components/cloud/__init__.py

[error] invalid-argument-type - :268:51 - Argument to bound method `__init__` is incorrect: Expected `dict[str, Any]`, found `(Unknown & ~AlwaysFalsy) | (str & ~AlwaysFalsy) | Unknown`
[error] invalid-argument-type - :268:63 - Argument to bound method `__init__` is incorrect: Expected `dict[str, Any]`, found `(Unknown & ~AlwaysFalsy) | (str & ~AlwaysFalsy) | Unknown`

homeassistant/components/cloud/assist_pipeline.py

[error] invalid-argument-type - :106:57 - Argument to function `async_update_pipeline` is incorrect: Expected `bool | UndefinedType`, found `Any | str`

homeassistant/components/ecowitt/binary_sensor.py

[error] invalid-argument-type - :51:13 - 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

[error] invalid-argument-type - :285:13 - Argument to function `replace` is incorrect: Argument type `Unknown | SensorEntityDescription` does not satisfy upper bound `DataclassInstance` of type variable `_DataclassT`

homeassistant/components/emulated_hue/hue_api.py

[error] unsupported-operator - :436:40 - Operator `>` is not supported for types `None` and `int`, in comparing `Any | bool | None` with `Literal[0]`
[error] unsupported-operator - :453:26 - Operator `/` is unsupported between objects of type `Any | bool | None` and `Unknown | Literal[254]`
[error] invalid-argument-type - :478:25 - Argument to function `hue_brightness_to_hass` is incorrect: Expected `int`, found `Any | bool | None`
[error] unsupported-operator - :494:36 - Operator `/` is unsupported between objects of type `Any | bool | None | Literal[0]` and `Unknown | Literal[65535]`
[error] unsupported-operator - :495:36 - Operator `/` is unsupported between objects of type `Any | bool | None | Literal[0]` and `Unknown | Literal[254]`
[error] invalid-argument-type - :508:29 - Argument to function `color_temperature_mired_to_kelvin` is incorrect: Expected `int | float`, found `Any | bool | None`
[error] unsupported-operator - :516:45 - Operator `/` is unsupported between objects of type `Any | bool | None` and `Literal[10]`
[error] unsupported-operator - :559:49 - Operator `/` is unsupported between objects of type `Any | bool | None` and `float`
[error] invalid-argument-type - :614:50 - Argument to function `create_hue_success_response` is incorrect: Expected `str`, found `Any | bool | None`
[error] invalid-argument-type - :628:69 - Argument to function `create_hue_success_response` is incorrect: Expected `str`, found `Any | bool | None`

homeassistant/components/google_assistant/helpers.py

[error] invalid-assignment - :622:13 - Method `__setitem__` of type `Unknown | (bound method dict[Unknown | str, Unknown].__setitem__(key: Unknown | str, value: Unknown, /) -> None) | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None) | (Overload[(key: SupportsIndex, value: @Todo, /) -> None, (key: slice[Any, Any, Any], value: Iterable[@Todo], /) -> None])` cannot be called with a key of type `Literal["nicknames"]` and a value of type `list[Unknown]` on object of type `Unknown | dict[Unknown | str, Unknown] | dict[Unknown, Unknown] | list[@Todo]`
[error] invalid-argument-type - :624:17 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> @Todo, (s: slice[Any, Any, Any], /) -> list[@Todo]]` cannot be called with key of type `Literal["nicknames"]` on object of type `list[@Todo]`
[warning] possibly-missing-attribute - :637:13 - Attribute `update` on type `Unknown | dict[Unknown | str, Unknown] | dict[Unknown, Unknown] | list[@Todo]` may be missing

homeassistant/components/google_assistant/trait.py

[warning] possibly-missing-attribute - :1928:13 - Attribute `append` on type `Unknown | list[Unknown | dict[Unknown | str, Unknown | str]] | list[Unknown] | bool` may be missing

homeassistant/components/html5/notify.py

[warning] possibly-missing-attribute - :481:13 - Attribute `get` on type `Unknown | str | dict[Unknown, Unknown]` may be missing
[warning] possibly-missing-implicit-call - :484:13 - Method `__setitem__` of type `Unknown | str | dict[Unknown, Unknown]` may be missing

homeassistant/components/hue/v1/sensor_base.py

[warning] possibly-missing-attribute - :134:24 - Attribute `format` on type `@Todo | str | <class 'HueEvent'>` may be missing
[error] call-non-callable - :135:29 - Object of type `str` is not callable

homeassistant/components/influxdb/__init__.py

[warning] possibly-missing-implicit-call - :282:13 - Method `__setitem__` of type `Any | (Unknown & ~AlwaysFalsy) | str | dict[Unknown | str, Unknown] | dict[Unknown, Unknown]` may be missing
[warning] possibly-missing-implicit-call - :290:17 - Method `__setitem__` of type `Any | (Unknown & ~AlwaysFalsy) | str | dict[Unknown | str, Unknown] | dict[Unknown, Unknown]` may be missing
[warning] possibly-missing-implicit-call - :304:21 - Method `__setitem__` of type `Any | (Unknown & ~AlwaysFalsy) | str | dict[Unknown | str, Unknown] | dict[Unknown, Unknown]` may be missing
[warning] possibly-missing-implicit-call - :308:21 - Method `__setitem__` of type `Any | (Unknown & ~AlwaysFalsy) | str | dict[Unknown | str, Unknown] | dict[Unknown, Unknown]` may be missing
[warning] possibly-missing-implicit-call - :311:25 - Method `__setitem__` of type `Any | (Unknown & ~AlwaysFalsy) | str | dict[Unknown | str, Unknown] | dict[Unknown, Unknown]` may be missing
[error] invalid-argument-type - :317:42 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Any | str` on object of type `str`
[error] invalid-argument-type - :318:29 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Any | str` on object of type `str`
[warning] possibly-missing-attribute - :320:9 - Attribute `update` on type `Any | (Unknown & ~AlwaysFalsy) | str | dict[Unknown | str, Unknown] | dict[Unknown, Unknown]` may be missing
[error] no-matching-overload - :320:9 - No overload of bound method `update` matches arguments
[error] no-matching-overload - :320:9 - No overload of bound method `update` matches arguments
[warning] possibly-missing-implicit-call - :284:13 - Method `__setitem__` of type `Any | (Unknown & ~AlwaysFalsy) | str | dict[Unknown | str, Unknown] | dict[Unknown, Unknown]` may be missing

homeassistant/components/isy994/number.py

[error] invalid-argument-type - :133:54 - Argument to bound method `__init__` is incorrect: Expected `NumberEntityDescription`, found `Unknown | str | NumberEntityDescription | DeviceInfo | None`
[error] invalid-argument-type - :133:54 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | NumberEntityDescription | DeviceInfo | None`
[error] invalid-argument-type - :133:54 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | NumberEntityDescription | DeviceInfo | None`
[error] invalid-argument-type - :135:51 - Argument to bound method `__init__` is incorrect: Expected `EntityDescription`, found `Unknown | str | NumberEntityDescription | DeviceInfo | None`
[error] invalid-argument-type - :135:51 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | NumberEntityDescription | DeviceInfo | None`
[error] invalid-argument-type - :135:51 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | NumberEntityDescription | DeviceInfo | None`

homeassistant/components/isy994/select.py

[error] invalid-argument-type - :98:53 - Argument to bound method `__init__` is incorrect: Expected `EntityDescription`, found `Unknown | str | SelectEntityDescription | DeviceInfo | None`
[error] invalid-argument-type - :98:53 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | SelectEntityDescription | DeviceInfo | None`
[error] invalid-argument-type - :98:53 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | SelectEntityDescription | DeviceInfo | None`
[error] invalid-argument-type - :101:54 - Argument to bound method `__init__` is incorrect: Expected `SelectEntityDescription`, found `Unknown | str | SelectEntityDescription | DeviceInfo | None`
[error] invalid-argument-type - :101:54 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | SelectEntityDescription | DeviceInfo | None`
[error] invalid-argument-type - :101:54 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | SelectEntityDescription | DeviceInfo | None`
[error] invalid-argument-type - :104:60 - Argument to bound method `__init__` is incorrect: Expected `EntityDescription`, found `Unknown | str | SelectEntityDescription | DeviceInfo | None`
[error] invalid-argument-type - :104:60 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | SelectEntityDescription | DeviceInfo | None`
[error] invalid-argument-type - :104:60 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | SelectEntityDescription | DeviceInfo | None`

homeassistant/components/lovelace/__init__.py

[error] invalid-argument-type - :333:58 - Argument to function `async_register_built_in_panel` is incorrect: Expected `bool`, found `Unknown | str | None | dict[Unknown | str, Unknown | str] | bool`
[error] invalid-argument-type - :333:58 - Argument to function `async_register_built_in_panel` is incorrect: Expected `bool`, found `Unknown | str | None | dict[Unknown | str, Unknown | str] | bool`
[error] invalid-argument-type - :333:58 - Argument to function `async_register_built_in_panel` is incorrect: Expected `dict[str, Any] | None`, found `Unknown | str | None | dict[Unknown | str, Unknown | str] | bool`
[error] invalid-argument-type - :333:58 - Argument to function `async_register_built_in_panel` is incorrect: Expected `str | None`, found `Unknown | str | None | dict[Unknown | str, Unknown | str] | bool`
[error] invalid-argument-type - :333:58 - Argument to function `async_register_built_in_panel` is incorrect: Expected `str | None`, found `Unknown | str | None | dict[Unknown | str, Unknown | str] | bool`
[error] invalid-argument-type - :333:58 - Argument to function `async_register_built_in_panel` is incorrect: Expected `str | None`, found `Unknown | str | None | dict[Unknown | str, Unknown | str] | bool`
[error] invalid-argument-type - :333:58 - Argument to function `async_register_built_in_panel` is incorrect: Expected `str | None`, found `Unknown | str | None | dict[Unknown | str, Unknown | str] | bool`

homeassistant/components/mqtt/siren.py

[warning] unused-ignore-comment - :348:53 - Unused blanket `type: ignore` directive

homeassistant/components/notion/__init__.py

[error] invalid-argument-type - :106:51 - Argument to bound method `async_update_entry` is incorrect: Expected `MappingProxyType[str, tuple[DiscoveryKey, ...]] | UndefinedType`, found `Any | dict[Unknown, Unknown]`
[error] invalid-argument-type - :106:51 - Argument to bound method `async_update_entry` is incorrect: Expected `bool | UndefinedType`, found `Any | dict[Unknown, Unknown]`
[error] invalid-argument-type - :106:51 - Argument to bound method `async_update_entry` is incorrect: Expected `bool | UndefinedType`, found `Any | dict[Unknown, Unknown]`
[error] invalid-argument-type - :106:51 - Argument to bound method `async_update_entry` is incorrect: Expected `int | UndefinedType`, found `Any | dict[Unknown, Unknown]`
[error] invalid-argument-type - :106:51 - Argument to bound method `async_update_entry` is incorrect: Expected `int | UndefinedType`, found `Any | dict[Unknown, Unknown]`
[error] invalid-argument-type - :106:51 - Argument to bound method `async_update_entry` is incorrect: Expected `str | None | UndefinedType`, found `Any | dict[Unknown, Unknown]`
[error] invalid-argument-type - :106:51 - Argument to bound method `async_update_entry` is incorrect: Expected `str | UndefinedType`, found `Any | dict[Unknown, Unknown]`

homeassistant/components/owntracks/messages.py

[warning] possibly-missing-implicit-call - :74:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown, Unknown]` may be missing
[warning] possibly-missing-implicit-call - :76:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown, Unknown]` may be missing
[warning] possibly-missing-implicit-call - :78:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown, Unknown]` may be missing
[warning] possibly-missing-implicit-call - :80:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown, Unknown]` may be missing
[warning] possibly-missing-implicit-call - :82:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown, Unknown]` may be missing

homeassistant/components/plex/media_browser.py

[error] invalid-argument-type - :84:28 - Argument to bound method `__init__` is incorrect: Expected `Sequence[BrowseMedia] | None`, found `Unknown | MediaClass | bool`
[error] invalid-argument-type - :84:28 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | MediaClass | bool`
[error] invalid-argument-type - :84:28 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | MediaClass | bool`
[error] invalid-argument-type - :84:28 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | MediaClass | bool`
[error] invalid-argument-type - :84:28 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | MediaClass | bool`
[error] invalid-argument-type - :84:28 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | MediaClass | bool`
[error] invalid-argument-type - :84:28 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | MediaClass | bool`
[error] invalid-argument-type - :84:28 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | bool`
[error] invalid-argument-type - :84:28 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | bool`
[error] invalid-argument-type - :84:28 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | bool`
[error] invalid-argument-type - :84:28 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | bool`
[warning] possibly-missing-attribute - :142:17 - Attribute `append` on type `Unknown | str | bool | list[Unknown]` may be missing
[error] invalid-argument-type - :145:32 - Argument to bound method `__init__` is incorrect: Expected `Sequence[BrowseMedia] | None`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :145:32 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :145:32 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :145:32 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :145:32 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :145:32 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :145:32 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :145:32 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :145:32 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :145:32 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :145:32 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | list[Unknown]`
[warning] possibly-missing-attribute - :204:17 - Attribute `append` on type `Unknown | str | bool | list[Unknown]` may be missing
[warning] possibly-missing-attribute - :210:17 - Attribute `append` on type `Unknown | str | bool | list[Unknown]` may be missing
[error] invalid-argument-type - :213:28 - Argument to bound method `__init__` is incorrect: Expected `Sequence[BrowseMedia] | None`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :213:28 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :213:28 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :213:28 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :213:28 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :213:28 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :213:28 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :213:28 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :213:28 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :213:28 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | list[Unknown]`
[error] invalid-argument-type - :213:28 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | list[Unknown]`
[warning] possibly-missing-attribute - :251:17 - Attribute `append` on type `Unknown | MediaClass | (Unknown & ~str) | bool | list[Unknown]` may be missing
[error] invalid-argument-type - :253:28 - Argument to bound method `__init__` is incorrect: Expected `Sequence[BrowseMedia] | None`, found `Unknown | MediaClass | (Unknown & ~str) | bool | list[Unknown]`
[error] invalid-argument-type - :253:28 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | MediaClass | (Unknown & ~str) | bool | list[Unknown]`
[error] invalid-argument-type - :253:28 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | MediaClass | (Unknown & ~str) | bool | list[Unknown]`
[error] invalid-argument-type - :253:28 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | MediaClass | (Unknown & ~str) | bool | list[Unknown]`
[error] invalid-argument-type - :253:28 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | MediaClass | (Unknown & ~str) | bool | list[Unknown]`
[error] invalid-argument-type - :253:28 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | MediaClass | (Unknown & ~str) | bool | list[Unknown]`
[error] invalid-argument-type - :253:28 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | MediaClass | (Unknown & ~str) | bool | list[Unknown]`
[error] invalid-argument-type - :253:28 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | (Unknown & ~str) | bool | list[Unknown]`
[error] invalid-argument-type - :253:28 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | (Unknown & ~str) | bool | list[Unknown]`
[error] invalid-argument-type - :253:28 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | (Unknown & ~str) | bool | list[Unknown]`
[error] invalid-argument-type - :253:28 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | (Unknown & ~str) | bool | list[Unknown]`
[error] invalid-argument-type - :373:24 - Argument to bound method `__init__` is incorrect: Expected `Sequence[BrowseMedia] | None`, found `Unknown | str | bool`
[error] invalid-argument-type - :373:24 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool`
[error] invalid-argument-type - :373:24 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool`
[error] invalid-argument-type - :373:24 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool`
[error] invalid-argument-type - :373:24 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | str | bool`
[error] invalid-argument-type - :373:24 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | str | bool`
[error] invalid-argument-type - :373:24 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | str | bool`
[error] invalid-argument-type - :373:24 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool`
[error] invalid-argument-type - :373:24 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool`
[error] invalid-argument-type - :373:24 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool`
[error] invalid-argument-type - :373:24 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool`

homeassistant/components/recorder/db_schema.py

[error] invalid-return-type - :344:20 -
Old: Return type does not match returned value: expected `Event[Mapping[str, Any]] | None`, found `Event[dict[str, dict[str, Any] | list[Any] | str | int | float | None] | dict[@Todo, @Todo]]`
New: Return type does not match returned value: expected `Event[Mapping[str, Any]] | None`, found `Event[dict[str, dict[str, Any] | list[Any] | str | int | float | None] | dict[Unknown, Unknown]]`

homeassistant/components/roon/media_browser.py

[error] invalid-argument-type - :94:24 - Argument to bound method `__init__` is incorrect: Expected `Sequence[BrowseMedia] | None`, found `Unknown | str | bool | None`
[error] invalid-argument-type - :94:24 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool | None`
[error] invalid-argument-type - :94:24 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool | None`
[error] invalid-argument-type - :94:24 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | bool | None`
[error] invalid-argument-type - :94:24 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | str | bool | None`
[error] invalid-argument-type - :94:24 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | str | bool | None`
[error] invalid-argument-type - :94:24 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | str | bool | None`
[error] invalid-argument-type - :94:24 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | None`
[error] invalid-argument-type - :94:24 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | None`
[error] invalid-argument-type - :94:24 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | None`
[error] invalid-argument-type - :94:24 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | bool | None`

homeassistant/components/shell_command/__init__.py

[error] invalid-argument-type - :80:47 -
Old: Argument to function `split` is incorrect: Expected `str | _ShlexInstream`, found `@Todo | None`
New: Argument to function `split` is incorrect: Expected `str | _ShlexInstream`, found `Any | None`

homeassistant/components/sonos/diagnostics.py

[warning] possibly-missing-implicit-call - :62:17 - Method `__setitem__` of type `Any | int | float` may be missing
[warning] possibly-missing-implicit-call - :66:17 - Method `__setitem__` of type `Any | int | float` may be missing

homeassistant/components/squeezebox/browse_media.py

[warning] possibly-missing-attribute - :421:13 - Attribute `append` on type `Any | str | bool | list[Unknown]` may be missing
[warning] possibly-missing-attribute - :438:13 - Attribute `extend` on type `Any | str | bool | list[Unknown]` may be missing
[error] invalid-argument-type - :438:45 - Argument to bound method `extend` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | Sequence[BrowseMedia] | None`
[warning] possibly-missing-attribute - :440:13 - Attribute `append` on type `Any | str | bool | list[Unknown]` may be missing
[error] invalid-argument-type - :442:24 - Argument to bound method `__init__` is incorrect: Expected `Sequence[BrowseMedia] | None`, found `Any | str | bool | list[Unknown]`
[error] invalid-argument-type - :442:24 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Any | str | bool | list[Unknown]`
[error] invalid-argument-type - :442:24 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Any | str | bool | list[Unknown]`
[error] invalid-argument-type - :442:24 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Any | str | bool | list[Unknown]`
[error] invalid-argument-type - :442:24 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Any | str | bool | list[Unknown]`
[error] invalid-argument-type - :442:24 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Any | str | bool | list[Unknown]`
[error] invalid-argument-type - :442:24 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Any | str | bool | list[Unknown]`
[error] invalid-argument-type - :442:24 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Any | str | bool | list[Unknown]`
[error] invalid-argument-type - :442:24 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Any | str | bool | list[Unknown]`
[error] invalid-argument-type - :442:24 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Any | str | bool | list[Unknown]`
[error] invalid-argument-type - :442:24 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Any | str | bool | list[Unknown]`

homeassistant/components/thread/diagnostics.py

[warning] possibly-missing-attribute - :195:21 - Attribute `update` on type `Unknown | str | (list[str] & ~AlwaysFalsy) | list[Unknown] | dict[Unknown, Unknown] | None` may be missing
[error] invalid-assignment - :198:21 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[str], /) -> None]) | (Overload[(key: SupportsIndex, value: Unknown, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown], /) -> None]) | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None)` cannot be called with a key of type `str` and a value of type `Unknown` on object of type `Unknown | str | (list[str] & ~AlwaysFalsy) | list[Unknown] | dict[Unknown, Unknown] | None`
[warning] possibly-missing-attribute - :200:36 - Attribute `keys` on type `Unknown | str | (list[str] & ~AlwaysFalsy) | list[Unknown] | dict[Unknown, Unknown] | None` may be missing

homeassistant/components/velbus/diagnostics.py

[warning] possibly-missing-attribute - :22:9 - Attribute `append` on type `Any | dict[str, Any] | list[Unknown]` may be missing

homeassistant/components/vilfo/config_flow.py

[warning] possibly-missing-implicit-call - :58:9 - Method `__setitem__` of type `Unknown | None | dict[Unknown, Unknown]` may be missing
[warning] possibly-missing-implicit-call - :59:9 - Method `__setitem__` of type `Unknown | None | dict[Unknown, Unknown]` may be missing
[warning] possibly-missing-implicit-call - :61:9 - Method `__setitem__` of type `Unknown | None | dict[Unknown, Unknown]` may be missing
[warning] possibly-missing-implicit-call - :62:9 - Method `__setitem__` of type `Unknown | None | dict[Unknown, Unknown]` may be missing

homeassistant/components/xiaomi_ble/event.py

[error] invalid-argument-type - :149:43 - Argument to function `replace` is incorrect: Argument type `Unknown | EventEntityDescription` does not satisfy upper bound `DataclassInstance` of type variable `_DataclassT`

homeassistant/components/yamaha_musiccast/media_player.py

[error] invalid-argument-type - :364:17 -
Old: Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | None`
New: Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | None`
[error] invalid-argument-type - :391:13 -
Old: Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | None`
New: Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | MediaClass | None`

homeassistant/components/zwave_js/api.py

[error] non-subscriptable - :2757:20 - Cannot subscript object of type `None` with no `__getitem__` method
[warning] possibly-missing-implicit-call - :2759:13 - Method `__setitem__` of type `Unknown | None` may be missing
[error] non-subscriptable - :2760:62 - Cannot subscript object of type `None` with no `__getitem__` method

homeassistant/helpers/trigger.py

[error] invalid-return-type - :438:16 -
Old: Return type does not match returned value: expected `tuple[str, TriggerProtocol]`, found `tuple[Unknown, ModuleType]`
New: Return type does not match returned value: expected `tuple[str, TriggerProtocol]`, found `tuple[Unknown | str, ModuleType]`

homeassistant/loader.py

[error] invalid-argument-type - :1484:9 -
Old: Argument to function `_resolve_integrations_dependencies` is incorrect: Expected `_ResolveDependenciesCacheProtocol`, found `dict[@Todo, @Todo]`
New: Argument to function `_resolve_integrations_dependencies` is incorrect: Expected `_ResolveDependenciesCacheProtocol`, found `dict[Unknown, Unknown]`

homeassistant/util/__init__.py

[error] invalid-assignment - :170:17 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to attribute `_throttle` on type `~<Protocol with members '_throttle'>`
New: Object of type `dict[Unknown, Unknown]` is not assignable to attribute `_throttle` on type `~<Protocol with members '_throttle'>`

cwltool (https://github.com/common-workflow-language/cwltool)

cwltool/main.py

[warning] possibly-missing-attribute - :483:33 -
Old: Attribute `get` on type `Unknown | MutableMapping[str, @Todo | None] | None | dict[@Todo, @Todo]` may be missing
New: Attribute `get` on type `Unknown | MutableMapping[str, @Todo | None] | None | dict[Unknown | str, Unknown] | dict[Unknown, Unknown]` may be missing
[error] unsupported-operator - :532:8 -
Old: Operator `in` is not supported for types `str` and `None`, in comparing `Literal["cwl:tool"]` with `Unknown | MutableMapping[str, @Todo | None] | None | dict[@Todo, @Todo]`
New: Operator `in` is not supported for types `str` and `None`, in comparing `Literal["cwl:tool"]` with `Unknown | MutableMapping[str, @Todo | None] | None | dict[Unknown | str, Unknown] | dict[Unknown, Unknown]`
[error] unsupported-operator - :534:8 -
Old: Operator `in` is not supported for types `Unknown` and `None`, in comparing `Unknown | Literal["__id"]` with `Unknown | MutableMapping[str, @Todo | None] | None | dict[@Todo, @Todo]`
New: Operator `in` is not supported for types `Unknown` and `None`, in comparing `Unknown | Literal["__id"]` with `Unknown | MutableMapping[str, @Todo | None] | None | dict[Unknown | str, Unknown] | dict[Unknown, Unknown]`

tests/test_examples.py

[error] invalid-argument-type - :84:20 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["bar"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :85:23 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["bar"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :86:23 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["bar"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :87:24 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["bar"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :88:27 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["bar"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :89:32 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["bar"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :90:27 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["bar"]` on object of type `list[Unknown | str]`

dd-trace-py (https://github.com/DataDog/dd-trace-py)

ddtrace/contrib/internal/azure_functions/utils.py

[error] unknown-argument - :13:35 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :13:35 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :13:35 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :13:35 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :13:35 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :13:35 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :13:59 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :13:59 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :13:59 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :13:59 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :13:59 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :13:59 - Argument `cloud_service` does not match any known parameter

ddtrace/contrib/internal/falcon/middleware.py

[error] unknown-argument - :27:66 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :27:66 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :27:66 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :27:66 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :27:66 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :27:66 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :27:66 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :27:83 - Argument `direction` does not match any known parameter
[error] unknown-argument - :27:83 - Argument `direction` does not match any known parameter
[error] unknown-argument - :27:83 - Argument `direction` does not match any known parameter
[error] unknown-argument - :27:83 - Argument `direction` does not match any known parameter

ddtrace/internal/coverage/instrumentation_py3_12.py

[error] invalid-argument-type - :119:36 - Argument to bound method `__init__` is incorrect: Expected `Iterable[Unknown]`, found `tuple[str, ...] | None`
[error] invalid-assignment - :130:21 - Method `__setitem__` of type `bound method dict[int, tuple[str, tuple[str, ...] | None]].__setitem__(key: int, value: tuple[str, tuple[str, ...] | None], /) -> None` cannot be called with a key of type `Literal[0] | (Unknown & int) | Unknown` and a value of type `tuple[None | str, tuple[Unknown, ...]]` on object of type `dict[int, tuple[str, tuple[str, ...] | None]]`
[error] invalid-argument-type - :132:36 - Argument to bound method `__init__` is incorrect: Expected `Iterable[Unknown]`, found `tuple[str, ...] | None`
[error] invalid-assignment - :135:21 - Method `__setitem__` of type `bound method dict[int, tuple[str, tuple[str, ...] | None]].__setitem__(key: int, value: tuple[str, tuple[str, ...] | None], /) -> None` cannot be called with a key of type `(Literal[0] & Unknown) | Unknown` and a value of type `tuple[None | str, tuple[str]]` on object of type `dict[int, tuple[str, tuple[str, ...] | None]]`

ddtrace/llmobs/_integrations/bedrock_agents.py

[error] invalid-assignment - :87:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None]) | (bound method dict[Unknown | str, Unknown | str | dict[Unknown, Unknown]].__setitem__(key: Unknown | str, value: Unknown | str | dict[Unknown, Unknown], /) -> None) | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None)` cannot be called with a key of type `Literal["metadata"]` and a value of type `Unknown & ~None` on object of type `Unknown | str | list[Unknown | str] | int | dict[Unknown | str, Unknown | str | dict[Unknown, Unknown]] | dict[Unknown, Unknown] | dict[Unknown | str, Unknown | str]`
[error] non-subscriptable - :90:9 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :90:9 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["input"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :90:9 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["input"]` on object of type `str`
[warning] possibly-missing-implicit-call - :90:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown, Unknown]` may be missing
[error] non-subscriptable - :92:9 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :92:9 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["output"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :92:9 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["output"]` on object of type `str`
[warning] possibly-missing-implicit-call - :92:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown, Unknown]` may be missing
[error] invalid-assignment - :94:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None]) | (bound method dict[Unknown | str, Unknown | str | dict[Unknown, Unknown]].__setitem__(key: Unknown | str, value: Unknown | str | dict[Unknown, Unknown], /) -> None) | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None)` cannot be called with a key of type `Unknown | Literal["error.message"]` and a value of type `Unknown & ~None` on object of type `Unknown | str | list[Unknown | str] | int | dict[Unknown | str, Unknown | str | dict[Unknown, Unknown]] | dict[Unknown, Unknown] | dict[Unknown | str, Unknown | str]`
[error] invalid-assignment - :96:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None]) | (bound method dict[Unknown | str, Unknown | str | dict[Unknown, Unknown]].__setitem__(key: Unknown | str, value: Unknown | str | dict[Unknown, Unknown], /) -> None) | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None)` cannot be called with a key of type `Unknown | Literal["error.type"]` and a value of type `Unknown & ~None` on object of type `Unknown | str | list[Unknown | str] | int | dict[Unknown | str, Unknown | str | dict[Unknown, Unknown]] | dict[Unknown, Unknown] | dict[Unknown | str, Unknown | str]`

benchmarks/bm/iast_fixtures/str_methods_py3.py

[error] invalid-argument-type - :140:29 -
Old: Argument to bound method `__init__` is incorrect: Expected `list[Any]`, found `dict[@Todo, @Todo]`
New: Argument to bound method `__init__` is incorrect: Expected `list[Any]`, found `dict[Unknown, Unknown]`

benchmarks/bm/iast_utils/aspects_benchmarks_generate.py

[error] non-subscriptable - :234:24 - Cannot subscript object of type `set[Unknown | str]` with no `__getitem__` method

benchmarks/set_http_meta/scenario.py

[warning] possibly-missing-implicit-call - :74:13 -
Old: Method `__setitem__` of type `Unknown | str | int | dict[@Todo, @Todo]` may be missing
New: Method `__setitem__` of type `Unknown | str | int | dict[Unknown | str, Unknown | str] | dict[Unknown | str, Unknown | int]` may be missing
[warning] possibly-missing-implicit-call - :80:13 -
Old: Method `__setitem__` of type `Unknown | str | int | dict[@Todo, @Todo]` may be missing
New: Method `__setitem__` of type `Unknown | str | int | dict[Unknown | str, Unknown | str] | dict[Unknown | str, Unknown | int]` may be missing

ddtrace/_trace/product.py

[error] invalid-argument-type - :62:25 -
Old: Argument to bound method `set_tags` is incorrect: Expected `dict[str, str]`, found `(Unknown & ~AlwaysFalsy) | (EnvVariable[dict[@Todo, @Todo]] & ~AlwaysFalsy)`
New: Argument to bound method `set_tags` is incorrect: Expected `dict[str, str]`, found `(Unknown & ~AlwaysFalsy) | (EnvVariable[dict[Unknown, Unknown]] & ~AlwaysFalsy)`

ddtrace/_trace/utils_valkey.py

[error] unknown-argument - :55:59 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :55:59 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :55:59 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :55:59 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :55:59 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :55:59 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :55:59 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :72:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :72:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :72:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :72:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :72:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :72:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :72:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :88:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :88:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :88:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :88:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :88:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :88:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :88:49 - Argument `cache_provider` does not match any known parameter
[warning] unused-ignore-comment - :35:93 - Unused blanket `type: ignore` directive

ddtrace/appsec/_iast/_ast/visitor.py

[error] invalid-argument-type - :154:5 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["os.path"]` on object of type `str`
[warning] possibly-missing-implicit-call - :154:5 - Method `__setitem__` of type `Any | str | dict[Unknown | str, Unknown | str] | dict[Unknown | str, Unknown | tuple[str]] | dict[Unknown | str, Unknown | tuple[str, str]] | set[Unknown | str] | dict[Unknown | str, Unknown | set[Unknown | str]] | dict[Unknown, Unknown]` may be missing

ddtrace/contrib/internal/aiobotocore/patch.py

[error] unknown-argument - :124:49 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :124:49 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :124:49 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :124:49 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :124:49 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :124:49 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :124:71 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :124:71 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :124:71 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :124:71 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :124:71 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :124:71 - Argument `cloud_service` does not match any known parameter

ddtrace/contrib/internal/aiohttp/middlewares.py

[error] unknown-argument - :36:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :36:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :36:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :36:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :36:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :36:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :36:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :36:84 - Argument `direction` does not match any known parameter
[error] unknown-argument - :36:84 - Argument `direction` does not match any known parameter
[error] unknown-argument - :36:84 - Argument `direction` does not match any known parameter
[error] unknown-argument - :36:84 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/aiohttp/patch.py

[error] unknown-argument - :93:53 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :93:53 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :93:53 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :93:53 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :93:53 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :93:53 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :93:53 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :93:70 - Argument `direction` does not match any known parameter
[error] unknown-argument - :93:70 - Argument `direction` does not match any known parameter
[error] unknown-argument - :93:70 - Argument `direction` does not match any known parameter
[error] unknown-argument - :93:70 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/aiomysql/patch.py

[error] unknown-argument - :71:80 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :71:80 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :71:80 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :71:80 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :71:80 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :71:80 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :71:80 - Argument `database_provider` does not match any known parameter

ddtrace/contrib/internal/aiopg/connection.py

[error] unknown-argument - :29:78 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :29:78 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :29:78 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :29:78 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :29:78 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :29:78 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :29:78 - Argument `database_provider` does not match any known parameter

ddtrace/contrib/internal/aioredis/patch.py

[error] unknown-argument - :143:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :143:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :143:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :143:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :143:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :143:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :143:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :212:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :212:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :212:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :212:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :212:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :212:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :212:48 - Argument `cache_provider` does not match any known parameter

ddtrace/contrib/internal/algoliasearch/patch.py

[error] unknown-argument - :128:64 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :128:64 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :128:64 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :128:64 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :128:64 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :128:64 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :128:96 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :128:96 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :128:96 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :128:96 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :128:96 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :128:96 - Argument `cloud_service` does not match any known parameter

ddtrace/contrib/internal/asgi/middleware.py

[error] unknown-argument - :254:71 - Argument `direction` does not match any known parameter
[error] unknown-argument - :254:71 - Argument `direction` does not match any known parameter
[error] unknown-argument - :254:71 - Argument `direction` does not match any known parameter
[error] unknown-argument - :254:71 - Argument `direction` does not match any known parameter
[error] unknown-argument - :254:104 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :254:104 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :254:104 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :254:104 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :254:104 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :254:104 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :254:104 - Argument `protocol` does not match any known parameter

ddtrace/contrib/internal/asyncpg/patch.py

[error] unknown-argument - :130:57 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :130:57 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :130:57 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :130:57 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :130:57 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :130:57 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :130:57 - Argument `database_provider` does not match any known parameter

ddtrace/contrib/internal/boto/patch.py

[error] unknown-argument - :92:49 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :92:49 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :92:49 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :92:49 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :92:49 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :92:49 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :92:71 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :92:71 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :92:71 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :92:71 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :92:71 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :92:71 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :172:49 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :172:49 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :172:49 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :172:49 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :172:49 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :172:49 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :172:71 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :172:71 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :172:71 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :172:71 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :172:71 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :172:71 - Argument `cloud_service` does not match any known parameter

ddtrace/contrib/internal/botocore/patch.py

[error] unknown-argument - :199:45 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :199:45 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :199:45 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :199:45 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :199:45 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :199:45 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :199:67 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :199:67 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :199:67 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :199:67 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :199:67 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :199:67 - Argument `cloud_service` does not match any known parameter
[error] unsupported-operator - :218:44 - Operator `in` is not supported for types `Any` and `(original_func, instance, args, kwargs, function_vars) -> Unknown`, in comparing `Any | None` with `(Unknown & ~None) | ((original_func, instance, args, kwargs, function_vars) -> Unknown) | list[Unknown | str] | ((original_func, instance, args, kwargs: dict[Unknown, Unknown], function_vars: dict[Unknown, Unknown]) -> Unknown)`
[error] invalid-argument-type - :251:9 -
Old: Argument to function `dispatch` is incorrect: Expected `tuple[Any, ...]`, found `list[Unknown | None | str | ((ctx: ExecutionContext) -> None) | ((ctx, endpoint_service: str | None = None) -> None) | ((ctx: ExecutionContext, params: Any) -> None)]`
New: Argument to function `dispatch` is incorrect: Expected `tuple[Any, ...]`, found `list[Unknown | None | str | ((v0_operation, cache_provider=None) -> Unknown) | ((v0_operation, cloud_provider=None, cloud_service=None) -> Unknown) | ((v0_operation, cloud_provider=None, cloud_service=None, direction=None) -> Unknown) | ((v0_operation, database_provider=None) -> Unknown) | ((v0_operation, provider=None, service=None, direction=None) -> Unknown) | ((v0_service_name) -> Unknown) | ((v0_operation, protocol=None, direction=None) -> Unknown) | ((v0_operation, provider=None, direction=None) -> Unknown) | ((...) -> Unknown) | ((ctx: ExecutionContext) -> None) | ((ctx, endpoint_service: str | None = None) -> None) | ((ctx: ExecutionContext, params: Any) -> None)]`

ddtrace/contrib/internal/botocore/services/bedrock.py

[error] invalid-return-type - :305:12 - Return type does not match returned value: expected `dict[str, list[str]]`, found `dict[Unknown | str, Unknown | (@Todo & Top[list[Unknown]]) | list[Unknown] | (Any & Top[list[Unknown]] & ~AlwaysFalsy) | list[Unknown | str | (@Todo & ~Top[list[Unknown]]) | (Any & ~AlwaysFalsy & ~Top[list[Unknown]]) | None] | list[Unknown | str | (@Todo & ~Top[list[Unknown]]) | None]]`

ddtrace/contrib/internal/botocore/services/kinesis.py

[error] unknown-argument - :119:13 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :119:13 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :119:13 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :119:13 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :119:13 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :119:13 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :120:13 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :120:13 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :120:13 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :120:13 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :120:13 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :120:13 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :121:13 - Argument `direction` does not match any known parameter
[error] unknown-argument - :121:13 - Argument `direction` does not match any known parameter
[error] unknown-argument - :121:13 - Argument `direction` does not match any known parameter
[error] unknown-argument - :121:13 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/botocore/services/sqs.py

[error] unknown-argument - :132:13 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :132:13 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :132:13 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :132:13 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :132:13 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :132:13 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :133:13 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :133:13 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :133:13 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :133:13 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :133:13 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :133:13 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :134:13 - Argument `direction` does not match any known parameter
[error] unknown-argument - :134:13 - Argument `direction` does not match any known parameter
[error] unknown-argument - :134:13 - Argument `direction` does not match any known parameter
[error] unknown-argument - :134:13 - Argument `direction` does not match any known parameter
[error] invalid-argument-type - :75:59 -
Old: Argument to function `dispatch` is incorrect: Expected `tuple[Any, ...]`, found `list[Unknown | None | str | dict[@Todo, @Todo]]`
New: Argument to function `dispatch` is incorrect: Expected `tuple[Any, ...]`, found `list[Unknown | None | str | dict[Unknown, Unknown]]`
[error] invalid-argument-type - :76:38 -
Old: Argument to function `add_dd_attributes_to_message` is incorrect: Expected `dict[str, Any]`, found `Unknown | dict[@Todo, @Todo] | (Unknown & ~None) | str | None`
New: Argument to function `add_dd_attributes_to_message` is incorrect: Expected `dict[str, Any]`, found `Unknown | dict[Unknown, Unknown] | (Unknown & ~None) | str | None`
[error] invalid-argument-type - :76:38 -
Old: Argument to function `add_dd_attributes_to_message` is incorrect: Expected `dict[str, str]`, found `Unknown | dict[@Todo, @Todo] | (Unknown & ~None) | str | None`
New: Argument to function `add_dd_attributes_to_message` is incorrect: Expected `dict[str, Any]`, found `Unknown | dict[Unknown, Unknown] | (Unknown & ~None) | str | None`
[error] invalid-argument-type - :76:38 -
Old: Argument to function `add_dd_attributes_to_message` is incorrect: Expected `str | None`, found `Unknown | dict[@Todo, @Todo] | (Unknown & ~None) | str | None`
New: Argument to function `add_dd_attributes_to_message` is incorrect: Expected `dict[str, Any]`, found `Unknown | dict[Unknown, Unknown] | (Unknown & ~None) | str | None`
[error] invalid-argument-type - :76:38 - Argument to function `add_dd_attributes_to_message` is incorrect: Expected `dict[str, str]`, found `Unknown | dict[Unknown, Unknown] | (Unknown & ~None) | str | None`
[error] invalid-argument-type - :76:38 - Argument to function `add_dd_attributes_to_message` is incorrect: Expected `str | None`, found `Unknown | dict[Unknown, Unknown] | (Unknown & ~None) | str | None`

ddtrace/contrib/internal/botocore/services/stepfunctions.py

[error] unknown-argument - :57:13 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :57:13 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :57:13 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :57:13 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :57:13 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :57:13 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :58:13 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :58:13 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :58:13 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :58:13 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :58:13 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :58:13 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :59:13 - Argument `direction` does not match any known parameter
[error] unknown-argument - :59:13 - Argument `direction` does not match any known parameter
[error] unknown-argument - :59:13 - Argument `direction` does not match any known parameter
[error] unknown-argument - :59:13 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/botocore/utils.py

[error] invalid-argument-type - :95:62 -
Old: Argument to function `dispatch` is incorrect: Expected `tuple[Any, ...]`, found `list[Unknown | ExecutionContext | None | dict[@Todo, @Todo]]`
New: Argument to function `dispatch` is incorrect: Expected `tuple[Any, ...]`, found `list[Unknown | ExecutionContext | None | dict[Unknown, Unknown]]`

ddtrace/contrib/internal/bottle/trace.py

[error] unknown-argument - :42:70 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :42:70 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :42:70 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :42:70 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :42:70 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :42:70 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :42:70 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :42:87 - Argument `direction` does not match any known parameter
[error] unknown-argument - :42:87 - Argument `direction` does not match any known parameter
[error] unknown-argument - :42:87 - Argument `direction` does not match any known parameter
[error] unknown-argument - :42:87 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/cassandra/session.py

[error] unknown-argument - :209:58 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :209:58 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :209:58 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :209:58 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :209:58 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :209:58 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :209:58 - Argument `database_provider` does not match any known parameter

ddtrace/contrib/internal/cherrypy/patch.py

[error] unknown-argument - :45:58 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :45:58 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :45:58 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :45:58 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :45:58 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :45:58 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :45:58 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :45:75 - Argument `direction` does not match any known parameter
[error] unknown-argument - :45:75 - Argument `direction` does not match any known parameter
[error] unknown-argument - :45:75 - Argument `direction` does not match any known parameter
[error] unknown-argument - :45:75 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/consul/patch.py

[error] unknown-argument - :69:51 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :69:51 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :69:51 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :69:51 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :69:51 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :69:51 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :69:51 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :69:68 - Argument `direction` does not match any known parameter
[error] unknown-argument - :69:68 - Argument `direction` does not match any known parameter
[error] unknown-argument - :69:68 - Argument `direction` does not match any known parameter
[error] unknown-argument - :69:68 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/django/patch.py

[error] unknown-argument - :350:64 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :350:64 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :350:64 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :350:64 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :350:64 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :350:64 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :350:64 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :350:81 - Argument `direction` does not match any known parameter
[error] unknown-argument - :350:81 - Argument `direction` does not match any known parameter
[error] unknown-argument - :350:81 - Argument `direction` does not match any known parameter
[error] unknown-argument - :350:81 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/django/response.py

[error] unknown-argument - :99:62 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :99:62 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :99:62 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :99:62 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :99:62 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :99:62 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :99:62 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :99:79 - Argument `direction` does not match any known parameter
[error] unknown-argument - :99:79 - Argument `direction` does not match any known parameter
[error] unknown-argument - :99:79 - Argument `direction` does not match any known parameter
[error] unknown-argument - :99:79 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/django/user.py

[error] invalid-argument-type - :50:53 - Argument expression after ** must be a mapping with `str` key type: Found `Unknown | (Unknown & ~AlwaysFalsy) | (EnvVariable[str] & ~AlwaysFalsy)`

ddtrace/contrib/internal/dogpile_cache/region.py

[error] unknown-argument - :20:53 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :20:53 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :20:53 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :20:53 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :20:53 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :20:53 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :20:53 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :43:53 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :43:53 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :43:53 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :43:53 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :43:53 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :43:53 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :43:53 - Argument `cache_provider` does not match any known parameter

ddtrace/contrib/internal/flask/patch.py

[error] unknown-argument - :120:68 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :120:68 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :120:68 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :120:68 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :120:68 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :120:68 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :120:68 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :120:85 - Argument `direction` does not match any known parameter
[error] unknown-argument - :120:85 - Argument `direction` does not match any known parameter
[error] unknown-argument - :120:85 - Argument `direction` does not match any known parameter
[error] unknown-argument - :120:85 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/flask_cache/patch.py

[error] unknown-argument - :88:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :88:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :88:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :88:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :88:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :88:49 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :88:49 - Argument `cache_provider` does not match any known parameter

ddtrace/contrib/internal/graphql/patch.py

[error] unknown-argument - :219:58 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :219:58 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :219:58 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :219:58 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :219:58 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :219:58 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :219:58 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :219:78 - Argument `direction` does not match any known parameter
[error] unknown-argument - :219:78 - Argument `direction` does not match any known parameter
[error] unknown-argument - :219:78 - Argument `direction` does not match any known parameter
[error] unknown-argument - :219:78 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/grpc/aio_client_interceptor.py

[error] unknown-argument - :146:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :146:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :146:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :146:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :146:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :146:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :146:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :146:63 - Argument `direction` does not match any known parameter
[error] unknown-argument - :146:63 - Argument `direction` does not match any known parameter
[error] unknown-argument - :146:63 - Argument `direction` does not match any known parameter
[error] unknown-argument - :146:63 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/grpc/aio_server_interceptor.py

[error] unknown-argument - :186:42 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :186:42 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :186:42 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :186:42 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :186:42 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :186:42 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :186:42 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :186:59 - Argument `direction` does not match any known parameter
[error] unknown-argument - :186:59 - Argument `direction` does not match any known parameter
[error] unknown-argument - :186:59 - Argument `direction` does not match any known parameter
[error] unknown-argument - :186:59 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/grpc/client_interceptor.py

[error] unknown-argument - :184:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :184:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :184:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :184:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :184:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :184:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :184:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :184:63 - Argument `direction` does not match any known parameter
[error] unknown-argument - :184:63 - Argument `direction` does not match any known parameter
[error] unknown-argument - :184:63 - Argument `direction` does not match any known parameter
[error] unknown-argument - :184:63 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/grpc/server_interceptor.py

[error] unknown-argument - :94:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :94:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :94:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :94:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :94:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :94:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :94:46 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :94:63 - Argument `direction` does not match any known parameter
[error] unknown-argument - :94:63 - Argument `direction` does not match any known parameter
[error] unknown-argument - :94:63 - Argument `direction` does not match any known parameter
[error] unknown-argument - :94:63 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/httplib/patch.py

[error] unknown-argument - :28:49 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :28:49 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :28:49 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :28:49 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :28:49 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :28:49 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :28:49 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :28:66 - Argument `direction` does not match any known parameter
[error] unknown-argument - :28:66 - Argument `direction` does not match any known parameter
[error] unknown-argument - :28:66 - Argument `direction` does not match any known parameter
[error] unknown-argument - :28:66 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/httpx/patch.py

[error] unknown-argument - :128:63 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :128:63 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :128:63 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :128:63 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :128:63 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :128:63 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :128:63 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :128:80 - Argument `direction` does not match any known parameter
[error] unknown-argument - :128:80 - Argument `direction` does not match any known parameter
[error] unknown-argument - :128:80 - Argument `direction` does not match any known parameter
[error] unknown-argument - :128:80 - Argument `direction` does not match any known parameter
[error] unknown-argument - :157:63 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :157:63 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :157:63 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :157:63 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :157:63 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :157:63 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :157:63 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :157:80 - Argument `direction` does not match any known parameter
[error] unknown-argument - :157:80 - Argument `direction` does not match any known parameter
[error] unknown-argument - :157:80 - Argument `direction` does not match any known parameter
[error] unknown-argument - :157:80 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/kafka/patch.py

[error] unknown-argument - :180:56 - Argument `provider` does not match any known parameter
[error] unknown-argument - :180:56 - Argument `provider` does not match any known parameter
[error] unknown-argument - :180:56 - Argument `provider` does not match any known parameter
[error] unknown-argument - :180:56 - Argument `provider` does not match any known parameter
[error] unknown-argument - :180:56 - Argument `provider` does not match any known parameter
[error] unknown-argument - :180:56 - Argument `provider` does not match any known parameter
[error] unknown-argument - :180:74 - Argument `direction` does not match any known parameter
[error] unknown-argument - :180:74 - Argument `direction` does not match any known parameter
[error] unknown-argument - :180:74 - Argument `direction` does not match any known parameter
[error] unknown-argument - :180:74 - Argument `direction` does not match any known parameter
[error] unknown-argument - :258:61 - Argument `provider` does not match any known parameter
[error] unknown-argument - :258:61 - Argument `provider` does not match any known parameter
[error] unknown-argument - :258:61 - Argument `provider` does not match any known parameter
[error] unknown-argument - :258:61 - Argument `provider` does not match any known parameter
[error] unknown-argument - :258:61 - Argument `provider` does not match any known parameter
[error] unknown-argument - :258:61 - Argument `provider` does not match any known parameter
[error] unknown-argument - :258:79 - Argument `direction` does not match any known parameter
[error] unknown-argument - :258:79 - Argument `direction` does not match any known parameter
[error] unknown-argument - :258:79 - Argument `direction` does not match any known parameter
[error] unknown-argument - :258:79 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/kombu/patch.py

[error] unknown-argument - :115:61 - Argument `provider` does not match any known parameter
[error] unknown-argument - :115:61 - Argument `provider` does not match any known parameter
[error] unknown-argument - :115:61 - Argument `provider` does not match any known parameter
[error] unknown-argument - :115:61 - Argument `provider` does not match any known parameter
[error] unknown-argument - :115:61 - Argument `provider` does not match any known parameter
[error] unknown-argument - :115:61 - Argument `provider` does not match any known parameter
[error] unknown-argument - :115:79 - Argument `direction` does not match any known parameter
[error] unknown-argument - :115:79 - Argument `direction` does not match any known parameter
[error] unknown-argument - :115:79 - Argument `direction` does not match any known parameter
[error] unknown-argument - :115:79 - Argument `direction` does not match any known parameter
[error] unknown-argument - :144:61 - Argument `provider` does not match any known parameter
[error] unknown-argument - :144:61 - Argument `provider` does not match any known parameter
[error] unknown-argument - :144:61 - Argument `provider` does not match any known parameter
[error] unknown-argument - :144:61 - Argument `provider` does not match any known parameter
[error] unknown-argument - :144:61 - Argument `provider` does not match any known parameter
[error] unknown-argument - :144:61 - Argument `provider` does not match any known parameter
[error] unknown-argument - :144:79 - Argument `direction` does not match any known parameter
[error] unknown-argument - :144:79 - Argument `direction` does not match any known parameter
[error] unknown-argument - :144:79 - Argument `direction` does not match any known parameter
[error] unknown-argument - :144:79 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/molten/patch.py

[error] unknown-argument - :84:62 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :84:62 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :84:62 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :84:62 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :84:62 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :84:62 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :84:62 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :84:79 - Argument `direction` does not match any known parameter
[error] unknown-argument - :84:79 - Argument `direction` does not match any known parameter
[error] unknown-argument - :84:79 - Argument `direction` does not match any known parameter
[error] unknown-argument - :84:79 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/mysql/patch.py

[error] unknown-argument - :25:81 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :25:81 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :25:81 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :25:81 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :25:81 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :25:81 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :25:81 - Argument `database_provider` does not match any known parameter

ddtrace/contrib/internal/mysqldb/patch.py

[error] unknown-argument - :32:81 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :32:81 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :32:81 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :32:81 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :32:81 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :32:81 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :32:81 - Argument `database_provider` does not match any known parameter

ddtrace/contrib/internal/psycopg/patch.py

[error] unknown-argument - :63:84 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :63:84 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :63:84 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :63:84 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :63:84 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :63:84 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :63:84 - Argument `database_provider` does not match any known parameter

ddtrace/contrib/internal/pylibmc/client.py

[error] unknown-argument - :163:57 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :163:57 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :163:57 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :163:57 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :163:57 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :163:57 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :163:57 - Argument `cache_provider` does not match any known parameter

ddtrace/contrib/internal/pymemcache/client.py

[error] unknown-argument - :310:52 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :310:52 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :310:52 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :310:52 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :310:52 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :310:52 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :310:52 - Argument `cache_provider` does not match any known parameter

ddtrace/contrib/internal/pymongo/client.py

[error] unknown-argument - :135:54 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :135:54 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :135:54 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :135:54 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :135:54 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :135:54 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :135:54 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :258:54 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :258:54 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :258:54 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :258:54 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :258:54 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :258:54 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :258:54 - Argument `database_provider` does not match any known parameter

ddtrace/contrib/internal/pymysql/patch.py

[error] unknown-argument - :24:83 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :24:83 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :24:83 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :24:83 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :24:83 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :24:83 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :24:83 - Argument `database_provider` does not match any known parameter

ddtrace/contrib/internal/pynamodb/patch.py

[error] unknown-argument - :68:60 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :68:60 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :68:60 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :68:60 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :68:60 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :68:60 - Argument `cloud_provider` does not match any known parameter
[error] unknown-argument - :68:82 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :68:82 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :68:82 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :68:82 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :68:82 - Argument `cloud_service` does not match any known parameter
[error] unknown-argument - :68:82 - Argument `cloud_service` does not match any known parameter

ddtrace/contrib/internal/pyramid/trace.py

[error] unknown-argument - :73:71 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :73:71 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :73:71 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :73:71 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :73:71 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :73:71 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :73:71 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :73:88 - Argument `direction` does not match any known parameter
[error] unknown-argument - :73:88 - Argument `direction` does not match any known parameter
[error] unknown-argument - :73:88 - Argument `direction` does not match any known parameter
[error] unknown-argument - :73:88 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/redis_utils.py

[error] invalid-return-type - :89:16 - Return type does not match returned value: expected `dict[str, str]`, found `dict[Unknown | str, Unknown | (Unknown & ~AlwaysFalsy) | int]`
[error] unknown-argument - :121:58 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :121:58 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :121:58 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :121:58 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :121:58 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :121:58 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :121:58 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :138:58 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :138:58 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :138:58 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :138:58 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :138:58 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :138:58 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :138:58 - Argument `cache_provider` does not match any known parameter
[warning] unused-ignore-comment - :100:91 - Unused blanket `type: ignore` directive

ddtrace/contrib/internal/rediscluster/patch.py

[error] unknown-argument - :101:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :101:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :101:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :101:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :101:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :101:48 - Argument `cache_provider` does not match any known parameter
[error] unknown-argument - :101:48 - Argument `cache_provider` does not match any known parameter

ddtrace/contrib/internal/requests/connection.py

[error] unknown-argument - :95:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :95:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :95:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :95:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :95:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :95:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :95:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :95:84 - Argument `direction` does not match any known parameter
[error] unknown-argument - :95:84 - Argument `direction` does not match any known parameter
[error] unknown-argument - :95:84 - Argument `direction` does not match any known parameter
[error] unknown-argument - :95:84 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/rq/patch.py

[error] unknown-argument - :69:37 - Argument `provider` does not match any known parameter
[error] unknown-argument - :69:37 - Argument `provider` does not match any known parameter
[error] unknown-argument - :69:37 - Argument `provider` does not match any known parameter
[error] unknown-argument - :69:37 - Argument `provider` does not match any known parameter
[error] unknown-argument - :69:37 - Argument `provider` does not match any known parameter
[error] unknown-argument - :69:37 - Argument `provider` does not match any known parameter
[error] unknown-argument - :69:52 - Argument `direction` does not match any known parameter
[error] unknown-argument - :69:52 - Argument `direction` does not match any known parameter
[error] unknown-argument - :69:52 - Argument `direction` does not match any known parameter
[error] unknown-argument - :69:52 - Argument `direction` does not match any known parameter
[error] unknown-argument - :96:35 - Argument `provider` does not match any known parameter
[error] unknown-argument - :96:35 - Argument `provider` does not match any known parameter
[error] unknown-argument - :96:35 - Argument `provider` does not match any known parameter
[error] unknown-argument - :96:35 - Argument `provider` does not match any known parameter
[error] unknown-argument - :96:35 - Argument `provider` does not match any known parameter
[error] unknown-argument - :96:35 - Argument `provider` does not match any known parameter
[error] unknown-argument - :96:50 - Argument `direction` does not match any known parameter
[error] unknown-argument - :96:50 - Argument `direction` does not match any known parameter
[error] unknown-argument - :96:50 - Argument `direction` does not match any known parameter
[error] unknown-argument - :96:50 - Argument `direction` does not match any known parameter
[error] unknown-argument - :163:34 - Argument `provider` does not match any known parameter
[error] unknown-argument - :163:34 - Argument `provider` does not match any known parameter
[error] unknown-argument - :163:34 - Argument `provider` does not match any known parameter
[error] unknown-argument - :163:34 - Argument `provider` does not match any known parameter
[error] unknown-argument - :163:34 - Argument `provider` does not match any known parameter
[error] unknown-argument - :163:34 - Argument `provider` does not match any known parameter
[error] unknown-argument - :163:49 - Argument `direction` does not match any known parameter
[error] unknown-argument - :163:49 - Argument `direction` does not match any known parameter
[error] unknown-argument - :163:49 - Argument `direction` does not match any known parameter
[error] unknown-argument - :163:49 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/sanic/patch.py

[error] unknown-argument - :209:61 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :209:61 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :209:61 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :209:61 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :209:61 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :209:61 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :209:61 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :209:78 - Argument `direction` does not match any known parameter
[error] unknown-argument - :209:78 - Argument `direction` does not match any known parameter
[error] unknown-argument - :209:78 - Argument `direction` does not match any known parameter
[error] unknown-argument - :209:78 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/sqlalchemy/engine.py

[error] unknown-argument - :66:77 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :66:77 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :66:77 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :66:77 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :66:77 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :66:77 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :66:77 - Argument `database_provider` does not match any known parameter

ddtrace/contrib/internal/sqlite3/patch.py

[error] unknown-argument - :28:82 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :28:82 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :28:82 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :28:82 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :28:82 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :28:82 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :28:82 - Argument `database_provider` does not match any known parameter

ddtrace/contrib/internal/tornado/application.py

[warning] possibly-missing-attribute - :40:24 - Attribute `get` on type `Unknown | Tracer | None` may be missing
[warning] possibly-missing-attribute - :42:5 - Attribute `configure` on type `Unknown | Tracer | None` may be missing
[error] invalid-assignment - :46:5 - Object of type `def wrap_executor(tracer, fn, args, kwargs, span_name, service=None, resource=None, span_type=None) -> Unknown` is not assignable to attribute `_wrap_executor` on type `Unknown | Tracer | None`
[error] invalid-assignment - :50:9 - Object of type `Unknown | Tracer | None` is not assignable to attribute `enabled` on type `Unknown | Tracer | None`
[warning] possibly-missing-attribute - :52:35 - Attribute `_agent_url` on type `Unknown | Tracer | None` may be missing
[error] invalid-assignment - :55:9 - Object of type `str` is not assignable to attribute `_agent_url` on type `Unknown | Tracer | None`
[warning] possibly-missing-attribute - :55:29 - Attribute `_span_aggregator` on type `Unknown | Tracer | None` may be missing
[error] invalid-assignment - :55:29 - Object of type `str` is not assignable to attribute `intake_url` on type `Unknown | TraceWriter`
[warning] possibly-missing-attribute - :56:9 - Attribute `_recreate` on type `Unknown | Tracer | None` may be missing
[warning] possibly-missing-attribute - :61:9 - Attribute `set_tags` on type `Unknown | Tracer | None` may be missing
[error] invalid-argument-type - :61:25 - Argument to bound method `set_tags` is incorrect: Expected `dict[str, str]`, found `(Unknown & ~AlwaysFalsy) | (Tracer & ~AlwaysFalsy)`
[error] invalid-argument-type - :63:15 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | Tracer | None`

ddtrace/contrib/internal/tornado/handlers.py

[error] unknown-argument - :33:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :33:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :33:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :33:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :33:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :33:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :33:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :33:84 - Argument `direction` does not match any known parameter
[error] unknown-argument - :33:84 - Argument `direction` does not match any known parameter
[error] unknown-argument - :33:84 - Argument `direction` does not match any known parameter
[error] unknown-argument - :33:84 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/urllib3/patch.py

[error] unknown-argument - :129:53 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :129:53 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :129:53 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :129:53 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :129:53 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :129:53 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :129:53 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :129:70 - Argument `direction` does not match any known parameter
[error] unknown-argument - :129:70 - Argument `direction` does not match any known parameter
[error] unknown-argument - :129:70 - Argument `direction` does not match any known parameter
[error] unknown-argument - :129:70 - Argument `direction` does not match any known parameter

ddtrace/contrib/internal/vertica/patch.py

[error] unknown-argument - :81:90 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :81:90 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :81:90 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :81:90 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :81:90 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :81:90 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :81:90 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :95:49 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :95:49 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :95:49 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :95:49 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :95:49 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :95:49 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :95:49 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :103:49 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :103:49 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :103:49 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :103:49 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :103:49 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :103:49 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :103:49 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :110:92 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :110:92 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :110:92 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :110:92 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :110:92 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :110:92 - Argument `database_provider` does not match any known parameter
[error] unknown-argument - :110:92 - Argument `database_provider` does not match any known parameter

ddtrace/contrib/internal/wsgi/wsgi.py

[error] unknown-argument - :277:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :277:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :277:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :277:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :277:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :277:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :277:67 - Argument `protocol` does not match any known parameter
[error] unknown-argument - :277:84 - Argument `direction` does not match any known parameter
[error] unknown-argument - :277:84 - Argument `direction` does not match any known parameter
[error] unknown-argument - :277:84 - Argument `direction` does not match any known parameter
[error] unknown-argument - :277:84 - Argument `direction` does not match any known parameter

ddtrace/debugging/_probe/status.py

[warning] unused-ignore-comment - :68:66 - Unused blanket `type: ignore` directive

ddtrace/internal/core/crashtracking.py

[warning] possibly-missing-attribute - :60:17 -
Old: Attribute `items` on type `Unknown | EnvVariable[dict[@Todo, @Todo]]` may be missing
New: Attribute `items` on type `Unknown | EnvVariable[dict[Unknown, Unknown]]` may be missing

ddtrace/internal/writer/writer.py

[warning] unused-ignore-comment - :584:73 - Unused blanket `type: ignore` directive

ddtrace/llmobs/_integrations/bedrock.py

[warning] possibly-missing-attribute - :303:21 - Attribute `append` on type `Unknown | list[Unknown] | str` may be missing
[warning] possibly-missing-attribute - :313:25 - Attribute `append` on type `Unknown | list[Unknown] | str` may be missing

ddtrace/llmobs/_integrations/utils.py

[warning] possibly-missing-attribute - :893:9 - Attribute `sort` on type `(Any & ~AlwaysFalsy) | (str & ~AlwaysFalsy) | (list[Unknown] & ~AlwaysFalsy)` may be missing
[warning] possibly-missing-attribute - :896:26 - Attribute `strip` on type `Any | str | list[Unknown]` may be missing

setup.py

[error] invalid-argument-type - :1017:5 - Argument to function `setup` is incorrect: Expected `Mapping[str, type[Command]]`, found `dict[Unknown | str, Unknown | <class 'CustomBuildExt'> | <class 'LibraryDownloader'> | <class 'CustomBuildRust'> | <class 'CleanLibraries'> | <class 'ExtensionHashes'>]`

tests/appsec/appsec/test_appsec_trace_utils.py

[error] invalid-argument-type - :310:63 -
Old: Argument to function `track_user_login_failure_event` is incorrect: Expected `bool | None`, found `dict[@Todo, @Todo]`
New: Argument to function `track_user_login_failure_event` is incorrect: Expected `bool | None`, found `dict[Unknown, Unknown]`

tests/appsec/appsec_utils.py

[warning] possibly-missing-attribute - :353:30 -
Old: Attribute `read` on type `IO[str] | None` may be missing
New: Attribute `read` on type `IO[Unknown] | None` may be missing

tests/ci_visibility/api_client/_util.py

[warning] possibly-missing-attribute - :77:9 - Attribute `update` on type `Unknown | bool | dict[Unknown | str, Unknown | bool]` may be missing
[error] invalid-argument-type - :77:9 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["early_flake_detection"]` on object of type `str`
[error] invalid-argument-type - :106:9 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["tests"]` on object of type `str`

tests/ci_visibility/api_client/test_ci_visibility_api_client.py

[error] invalid-argument-type - :589:50 - Argument to bound method `__init__` is incorrect: Expected `GitData`, found `Unknown | str | ITR_SKIPPING_LEVEL | None | float`
[error] invalid-argument-type - :589:50 - Argument to bound method `__init__` is incorrect: Expected `ITR_SKIPPING_LEVEL`, found `Unknown | str | ITR_SKIPPING_LEVEL | None | float`
[error] invalid-argument-type - :589:50 - Argument to bound method `__init__` is incorrect: Expected `int | float`, found `Unknown | str | ITR_SKIPPING_LEVEL | None | float`
[error] invalid-argument-type - :589:50 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | str | ITR_SKIPPING_LEVEL | None | float`
[error] invalid-argument-type - :589:50 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | str | ITR_SKIPPING_LEVEL | None | float`
[error] invalid-argument-type - :589:50 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | ITR_SKIPPING_LEVEL | None | float`
[error] invalid-argument-type - :589:50 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | ITR_SKIPPING_LEVEL | None | float`

tests/contrib/asyncpg/test_asyncpg.py

[error] unsupported-operator - :76:18 - Operator `+` is unsupported between objects of type `Unknown | str | int` and `Literal[1]`

tests/contrib/bottle/test.py

[error] unsupported-operator - :595:43 - Operator `+` is unsupported between objects of type `Literal["GET "]` and `Unknown | str | int`

tests/contrib/cherrypy/test_middleware.py

[error] unsupported-operator - :540:51 - Operator `+` is unsupported between objects of type `Literal["GET "]` and `Unknown | str | int`

tests/contrib/django/test_django_snapshots.py

[warning] possibly-missing-attribute - :76:16 -
Old: Attribute `read` on type `IO[str] | None` may be missing
New: Attribute `read` on type `IO[Unknown] | None` may be missing
[warning] possibly-missing-attribute - :76:46 -
Old: Attribute `read` on type `IO[str] | None` may be missing
New: Attribute `read` on type `IO[Unknown] | None` may be missing

tests/contrib/google_generativeai/test_google_generativeai_llmobs.py

[error] non-subscriptable - :41:29 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :41:29 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :41:29 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["text"]` on object of type `str`
[error] non-subscriptable - :66:29 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :66:29 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :66:29 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["text"]` on object of type `str`
[error] non-subscriptable - :159:29 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :159:29 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :159:29 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["text"]` on object of type `str`
[error] non-subscriptable - :192:29 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :192:29 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :192:29 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["text"]` on object of type `str`
[error] non-subscriptable - :225:29 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :225:29 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :225:29 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["text"]` on object of type `str`
[error] non-subscriptable - :260:29 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :260:29 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :260:29 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["text"]` on object of type `str`
[error] non-subscriptable - :293:32 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :293:32 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :293:32 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["text"]` on object of type `str`
[error] non-subscriptable - :330:32 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :330:32 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :330:32 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["text"]` on object of type `str`

tests/contrib/httplib/test_httplib.py

[error] unresolved-attribute - :85:28 -
Old: Type `def request(self, method: str, url: str, body: @Todo | str | None = None, headers: Mapping[str, @Todo] = dict[@Todo, @Todo], *, encode_chunked: bool = Literal[False]) -> None` has no attribute `__wrapped__`
New: Type `def request(self, method: str, url: str, body: @Todo | str | None = None, headers: Mapping[str, @Todo] = dict[Unknown, Unknown], *, encode_chunked: bool = Literal[False]) -> None` has no attribute `__wrapped__`

tests/contrib/integration_registry/registry_update_helpers/integration.py

[error] invalid-return-type - :133:20 -
Old: Return type does not match returned value: expected `bool`, found `dict[@Todo, @Todo]`
New: Return type does not match returned value: expected `bool`, found `dict[Unknown | str, Unknown | str]`
[error] invalid-return-type - :135:20 -
Old: Return type does not match returned value: expected `bool`, found `dict[@Todo, @Todo]`
New: Return type does not match returned value: expected `bool`, found `dict[Unknown | str, Unknown | str]`
[error] invalid-return-type - :137:20 -
Old: Return type does not match returned value: expected `bool`, found `dict[@Todo, @Todo]`
New: Return type does not match returned value: expected `bool`, found `dict[Unknown | str, Unknown | str]`

tests/contrib/litellm/test_litellm_llmobs.py

[error] invalid-argument-type - :126:29 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["name"]` on object of type `str`
[error] invalid-argument-type - :127:36 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["description"]` on object of type `str`
[error] invalid-argument-type - :128:31 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["parameters"]` on object of type `str`

tests/contrib/openai/utils.py

[warning] possibly-missing-implicit-call - :113:1 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str | float | list[Unknown | str]]]` may be missing
[warning] possibly-missing-implicit-call - :114:1 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str | float | list[Unknown | str]]]` may be missing

tests/contrib/pytest/test_pytest.py

[error] index-out-of-bounds - :65:19 - Index 1 is out of bounds for tuple `tuple[str]` with length 1

tests/contrib/vertexai/test_vertexai_llmobs.py

[error] non-subscriptable - :214:46 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :214:46 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["args"]` on object of type `str`
[error] invalid-argument-type - :214:46 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["location"]` on object of type `str`
[error] non-subscriptable - :221:33 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :221:33 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["parts"]` on object of type `str`
[error] invalid-argument-type - :221:33 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["text"]` on object of type `str`
[error] non-subscriptable - :356:46 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :356:46 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["args"]` on object of type `str`
[error] invalid-argument-type - :356:46 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["location"]` on object of type `str`
[error] non-subscriptable - :362:33 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :362:33 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["parts"]` on object of type `str`
[error] invalid-argument-type - :362:33 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["text"]` on object of type `str`
[error] non-subscriptable - :668:25 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :668:25 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["parts"]` on object of type `str`
[error] invalid-argument-type - :668:25 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["text"]` on object of type `str`
[error] non-subscriptable - :781:25 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :781:25 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["parts"]` on object of type `str`
[error] invalid-argument-type - :781:25 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["text"]` on object of type `str`
[error] non-subscriptable - :799:25 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :799:25 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["parts"]` on object of type `str`
[error] invalid-argument-type - :799:25 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["text"]` on object of type `str`
[error] non-subscriptable - :814:25 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :814:25 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["parts"]` on object of type `str`
[error] invalid-argument-type - :814:25 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["text"]` on object of type `str`
[error] non-subscriptable - :842:25 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :842:25 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["parts"]` on object of type `str`
[error] invalid-argument-type - :842:25 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["text"]` on object of type `str`

tests/internal/remoteconfig/test_remoteconfig_client.py

[error] invalid-argument-type - :58:93 -
Old: Argument to bound method `_load_new_configurations` is incorrect: Expected `AgentPayload`, found `dict[@Todo, @Todo]`
New: Argument to bound method `_load_new_configurations` is incorrect: Expected `AgentPayload`, found `dict[Unknown, Unknown]`
[error] invalid-argument-type - :106:93 -
Old: Argument to bound method `_load_new_configurations` is incorrect: Expected `AgentPayload`, found `dict[@Todo, @Todo]`
New: Argument to bound method `_load_new_configurations` is incorrect: Expected `AgentPayload`, found `dict[Unknown, Unknown]`
[error] invalid-argument-type - :129:101 -
Old: Argument to function `_apply_callback` is incorrect: Expected `ConfigMetadata`, found `dict[@Todo, @Todo]`
New: Argument to function `_apply_callback` is incorrect: Expected `ConfigMetadata`, found `dict[Unknown | str, Unknown | str | int]`
[error] invalid-argument-type - :173:93 -
Old: Argument to bound method `_load_new_configurations` is incorrect: Expected `AgentPayload`, found `dict[@Todo, @Todo]`
New: Argument to bound method `_load_new_configurations` is incorrect: Expected `AgentPayload`, found `dict[Unknown, Unknown]`
[error] invalid-argument-type - :198:93 -
Old: Argument to bound method `_load_new_configurations` is incorrect: Expected `AgentPayload`, found `dict[@Todo, @Todo]`
New: Argument to bound method `_load_new_configurations` is incorrect: Expected `AgentPayload`, found `dict[Unknown, Unknown]`
[error] invalid-argument-type - :229:93 -
Old: Argument to bound method `_load_new_configurations` is incorrect: Expected `AgentPayload`, found `dict[@Todo, @Todo]`
New: Argument to bound method `_load_new_configurations` is incorrect: Expected `AgentPayload`, found `dict[Unknown, Unknown]`
[error] invalid-argument-type - :381:97 -
Old: Argument to function `_apply_callback` is incorrect: Expected `ConfigMetadata`, found `dict[@Todo, @Todo]`
New: Argument to function `_apply_callback` is incorrect: Expected `ConfigMetadata`, found `dict[Unknown | str, Unknown | str]`

tests/internal/remoteconfig/test_remoteconfig_client_e2e.py

[error] invalid-argument-type - :61:9 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["state"]` on object of type `list[Unknown]`
[error] invalid-assignment - :61:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None]) | (bound method dict[Unknown | str, Unknown | str | list[Unknown] | None].__setitem__(key: Unknown | str, value: Unknown | str | list[Unknown] | None, /) -> None) | (bound method dict[Unknown | str, Unknown | int | (Unknown & ~None) | list[Unknown]].__setitem__(key: Unknown | str, value: Unknown | int | (Unknown & ~None) | list[Unknown], /) -> None)` cannot be called with a key of type `Literal["backend_client_state"]` and a value of type `Unknown & ~AlwaysFalsy` on object of type `Unknown | list[Unknown | str] | bool | dict[Unknown | str, Unknown | str | list[Unknown] | None] | dict[Unknown | str, Unknown | int | (Unknown & ~None) | list[Unknown]] | str`
[error] invalid-argument-type - :63:9 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Literal["state"]` on object of type `list[Unknown]`
[error] invalid-assignment - :63:9 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None]) | (bound method dict[Unknown | str, Unknown | str | list[Unknown] | None].__setitem__(key: Unknown | str, value: Unknown | str | list[Unknown] | None, /) -> None) | (bound method dict[Unknown | str, Unknown | int | (Unknown & ~None) | list[Unknown]].__setitem__(key: Unknown | str, value: Unknown | int | (Unknown & ~None) | list[Unknown], /) -> None)` cannot be called with a key of type `Literal["error"]` and a value of type `Unknown | None` on object of type `Unknown | list[Unknown | str] | bool | dict[Unknown | str, Unknown | str | list[Unknown] | None] | dict[Unknown | str, Unknown | int | (Unknown & ~None) | list[Unknown]] | str`

tests/internal/remoteconfig/test_remoteconfig_publisher.py

[error] invalid-argument-type - :17:50 -
Old: Argument to bound method `append` is incorrect: Expected `ConfigMetadata`, found `dict[@Todo, @Todo]`
New: Argument to bound method `append` is incorrect: Expected `ConfigMetadata`, found `dict[Unknown | str, Unknown | str | int]`

tests/llmobs/_utils.py

[warning] possibly-missing-implicit-call - :241:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown] | dict[Unknown, Unknown] | dict[Unknown | str, Unknown | str]` may be missing
[warning] possibly-missing-implicit-call - :242:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown] | dict[Unknown, Unknown] | dict[Unknown | str, Unknown | str]` may be missing
[warning] possibly-missing-implicit-call - :243:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown] | dict[Unknown, Unknown] | dict[Unknown | str, Unknown | str]` may be missing
[error] invalid-assignment - :287:9 - Method `__setitem__` of type `Unknown | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["tag"]` and a value of type `dict[Unknown | str, Unknown | (Unknown & ~None)]` on object of type `Unknown | dict[Unknown, Unknown] | list[Unknown | str]`
[error] invalid-assignment - :289:9 - Method `__setitem__` of type `Unknown | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["span"]` and a value of type `dict[Unknown | str, Unknown | (Unknown & ~None)]` on object of type `Unknown | dict[Unknown, Unknown] | list[Unknown | str]`

tests/profiling/collector/test_stack.py

[error] invalid-argument-type - :969:58 - Argument to function `get_thread_native_id` is incorrect: Expected `int`, found `Unknown | int | None`

tests/profiling_v2/exporter/test_ddup.py

[error] non-subscriptable - :52:12 -
Old: Cannot subscript object of type `EnvVariable[dict[@Todo, @Todo]]` with no `__getitem__` method
New: Cannot subscript object of type `EnvVariable[dict[Unknown, Unknown]]` with no `__getitem__` method
[error] non-subscriptable - :53:12 -
Old: Cannot subscript object of type `EnvVariable[dict[@Todo, @Todo]]` with no `__getitem__` method
New: Cannot subscript object of type `EnvVariable[dict[Unknown, Unknown]]` with no `__getitem__` method
[warning] possibly-missing-attribute - :63:17 -
Old: Attribute `items` on type `Unknown | EnvVariable[dict[@Todo, @Todo]]` may be missing
New: Attribute `items` on type `Unknown | EnvVariable[dict[Unknown, Unknown]]` may be missing

tests/tracer/test_encoders.py

[error] invalid-argument-type - :809:32 - Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | bytes | None`

tests/tracer/test_span.py

[error] invalid-argument-type - :864:18 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | None`
[error] invalid-argument-type - :866:22 - Argument to bound method `__init__` is incorrect: Expected `Context | None`, found `Unknown | str`
[error] invalid-argument-type - :866:22 - Argument to bound method `__init__` is incorrect: Expected `int | None`, found `Unknown | str`
[error] invalid-argument-type - :866:22 - Argument to bound method `__init__` is incorrect: Expected `int | None`, found `Unknown | str`
[error] invalid-argument-type - :866:22 - Argument to bound method `__init__` is incorrect: Expected `int | None`, found `Unknown | str`
[error] invalid-argument-type - :866:22 - Argument to bound method `__init__` is incorrect: Expected `int | None`, found `Unknown | str`
[error] invalid-argument-type - :866:22 - Argument to bound method `__init__` is incorrect: Expected `list[(Span, /) -> None] | None`, found `Unknown | str`
[error] invalid-argument-type - :866:22 - Argument to bound method `__init__` is incorrect: Expected `list[SpanLink] | None`, found `Unknown | str`

tests/utils.py

[error] invalid-argument-type - :1556:9 -
Old: Argument is incorrect: Expected `ConfigMetadata`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `ConfigMetadata`, found `dict[Unknown | str, Unknown | str | int]`

discord.py (https://github.com/Rapptz/discord.py)

discord/client.py

[error] invalid-argument-type - :723:59 - Argument to bound method `from_client` is incorrect: Expected `URL | None`, found `Unknown | bool`
[error] invalid-argument-type - :723:59 - Argument to bound method `from_client` is incorrect: Expected `str | None`, found `Unknown | bool`
[error] invalid-argument-type - :723:59 - Argument to bound method `from_client` is incorrect: Expected `str`, found `Unknown | bool`

discord/ext/commands/view.py

[error] invalid-argument-type - :151:53 -
Old: Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | None`
New: Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | None`
[error] invalid-argument-type - :162:57 -
Old: Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | None`
New: Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | None`

discord/ui/select.py

[error] invalid-assignment - :1185:13 - Object of type `dict[Unknown | <class 'UserSelect'> | <class 'RoleSelect'> | <class 'MentionableSelect'> | <class 'ChannelSelect'>, Unknown | ComponentType]` is not assignable to `dict[type[BaseSelect[Unknown]], Literal[ComponentType.user_select, ComponentType.channel_select, ComponentType.role_select, ComponentType.mentionable_select]]`

dragonchain (https://github.com/dragonchain/dragonchain)

dragonchain/lib/dto/api_key_model_utest.py

[error] non-subscriptable - :265:9 - Cannot subscript object of type `bool` with no `__getitem__` method
[error] invalid-argument-type - :265:9 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["transactions"]` on object of type `str`

dragonchain/job_processor/job_processor_utest.py

[error] invalid-argument-type - :219:53 - Argument to function `get_job_name` is incorrect: Expected `str`, found `Unknown | str | list[Unknown] | dict[Unknown, Unknown]`
[error] invalid-argument-type - :231:69 - Argument to function `get_job_name` is incorrect: Expected `str`, found `Unknown | str | list[Unknown] | dict[Unknown, Unknown]`

dragonchain/transaction_processor/level_1_actions_utest.py

[error] invalid-argument-type - :132:38 -
Old: Argument to function `create_block` is incorrect: Expected `list[TransactionModel]`, found `list[Unknown | dict[@Todo, @Todo]]`
New: Argument to function `create_block` is incorrect: Expected `list[TransactionModel]`, found `list[Unknown | dict[Unknown | str, Unknown | str]]`

dragonchain/webserver/lib/transactions.py

[error] invalid-return-type - :131:12 - Return type does not match returned value: expected `dict[str, str]`, found `dict[Unknown | str, Unknown | None]`

dulwich (https://github.com/dulwich/dulwich)

dulwich/porcelain.py

[error] invalid-argument-type - :1421:19 - Argument is incorrect: Expected `Blob`, found `Tree | Blob | Commit | Tag`
[error] invalid-argument-type - :1421:19 - Argument is incorrect: Expected `Commit`, found `Tree | Blob | Commit | Tag`
[error] invalid-argument-type - :1421:19 - Argument is incorrect: Expected `Tag`, found `Tree | Blob | Commit | Tag`
[error] invalid-argument-type - :1421:19 - Argument is incorrect: Expected `Tree`, found `Tree | Blob | Commit | Tag`

dulwich/tests/utils.py

[warning] unused-ignore-comment - :369:58 - Unused blanket `type: ignore` directive

freqtrade (https://github.com/freqtrade/freqtrade)

freqtrade/rpc/discord.py

[warning] possibly-missing-attribute - :57:21 - Attribute `append` on type `Unknown | str | int | list[Unknown]` may be missing

freqtrade/freqai/data_kitchen.py

[error] invalid-assignment - :827:17 -
Old: Method `__setitem__` of type `(bound method dict[str, dict[str, DataFrame]].__setitem__(key: str, value: dict[str, DataFrame], /) -> None) | (bound method dict[@Todo, @Todo].__setitem__(key: @Todo, value: @Todo, /) -> None)` cannot be called with a key of type `Unknown` and a value of type `DataFrame` on object of type `(dict[str, dict[str, DataFrame]] & ~AlwaysFalsy) | dict[@Todo, @Todo]`
New: Method `__setitem__` of type `(bound method dict[str, dict[str, DataFrame]].__setitem__(key: str, value: dict[str, DataFrame], /) -> None) | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None)` cannot be called with a key of type `Unknown` and a value of type `DataFrame` on object of type `(dict[str, dict[str, DataFrame]] & ~AlwaysFalsy) | dict[Unknown, Unknown]`
[error] invalid-assignment - :830:21 -
Old: Method `__setitem__` of type `(bound method dict[str, DataFrame].__setitem__(key: str, value: DataFrame, /) -> None) | (bound method dict[@Todo, @Todo].__setitem__(key: @Todo, value: @Todo, /) -> None)` cannot be called with a key of type `Unknown` and a value of type `dict[@Todo, @Todo]` on object of type `(dict[str, DataFrame] & ~AlwaysFalsy) | dict[@Todo, @Todo]`
New: Method `__setitem__` of type `(bound method dict[str, DataFrame].__setitem__(key: str, value: DataFrame, /) -> None) | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None)` cannot be called with a key of type `Unknown` and a value of type `dict[Unknown, Unknown]` on object of type `(dict[str, DataFrame] & ~AlwaysFalsy) | dict[Unknown, Unknown]`

freqtrade/strategy/strategyupdater.py

[warning] possibly-missing-attribute - :178:17 - Attribute `add` on type `Unknown | set[Unknown] | list[Unknown | tuple[str, str]]` may be missing
[warning] possibly-missing-attribute - :184:13 - Attribute `add` on type `Unknown | set[Unknown] | list[Unknown | tuple[str, str]]` may be missing

graphql-core (https://github.com/graphql-python/graphql-core)

tests/error/test_graphql_error.py

[warning] unused-ignore-comment - :404:46 - Unused blanket `type: ignore` directive

src/graphql/utilities/extend_schema.py

[warning] unused-ignore-comment - :265:56 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :266:62 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :267:70 - Unused blanket `type: ignore` directive

tests/execution/test_defer.py

[error] invalid-argument-type - :211:32 - Argument to bound method `__init__` is incorrect: Expected `list[str | int]`, found `Any | str | list[Unknown | str | int]`
[error] invalid-argument-type - :211:32 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Any | str | list[Unknown | str | int]`
[error] invalid-argument-type - :211:32 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Any | str | list[Unknown | str | int]`
[error] invalid-argument-type - :212:40 - Argument to bound method `__init__` is incorrect: Expected `list[str | int]`, found `Any | str | list[Unknown | str | int]`
[error] invalid-argument-type - :212:40 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Any | str | list[Unknown | str | int]`
[error] invalid-argument-type - :212:40 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Any | str | list[Unknown | str | int]`
[error] invalid-argument-type - :236:34 - Argument to bound method `__init__` is incorrect: Expected `list[GraphQLError] | None`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :236:34 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :237:42 - Argument to bound method `__init__` is incorrect: Expected `list[GraphQLError] | None`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :237:42 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :283:41 - Argument to bound method `__init__` is incorrect: Expected `dict[str, Any] | None`, found `Any | dict[Unknown | str, Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :283:41 - Argument to bound method `__init__` is incorrect: Expected `dict[str, Any]`, found `Any | dict[Unknown | str, Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :283:41 - Argument to bound method `__init__` is incorrect: Expected `list[GraphQLError] | None`, found `Any | dict[Unknown | str, Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :283:41 - Argument to bound method `__init__` is incorrect: Expected `list[str | int] | None`, found `Any | dict[Unknown | str, Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :283:41 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Any | dict[Unknown | str, Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :284:49 - Argument to bound method `__init__` is incorrect: Expected `dict[str, Any] | None`, found `Any | dict[Unknown | str, Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :284:49 - Argument to bound method `__init__` is incorrect: Expected `dict[str, Any]`, found `Any | dict[Unknown | str, Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :284:49 - Argument to bound method `__init__` is incorrect: Expected `list[GraphQLError] | None`, found `Any | dict[Unknown | str, Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :284:49 - Argument to bound method `__init__` is incorrect: Expected `list[str | int] | None`, found `Any | dict[Unknown | str, Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :284:49 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Any | dict[Unknown | str, Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :348:52 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Any | dict[Unknown | str, Unknown | str] | list[Unknown | GraphQLError] | list[Unknown | PendingResult] | bool | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :348:52 - Argument to bound method `__init__` is incorrect: Expected `dict[str, Any] | None`, found `Any | dict[Unknown | str, Unknown | str] | list[Unknown | GraphQLError] | list[Unknown | PendingResult] | bool | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :348:52 - Argument to bound method `__init__` is incorrect: Expected `dict[str, Any] | None`, found `Any | dict[Unknown | str, Unknown | str] | list[Unknown | GraphQLError] | list[Unknown | PendingResult] | bool | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :348:52 - Argument to bound method `__init__` is incorrect: Expected `list[GraphQLError] | None`, found `Any | dict[Unknown | str, Unknown | str] | list[Unknown | GraphQLError] | list[Unknown | PendingResult] | bool | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :348:52 - Argument to bound method `__init__` is incorrect: Expected `list[PendingResult] | None`, found `Any | dict[Unknown | str, Unknown | str] | list[Unknown | GraphQLError] | list[Unknown | PendingResult] | bool | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :349:60 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Any | dict[Unknown | str, Unknown | str] | list[Unknown | GraphQLError] | list[Unknown | PendingResult] | bool | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :349:60 - Argument to bound method `__init__` is incorrect: Expected `dict[str, Any] | None`, found `Any | dict[Unknown | str, Unknown | str] | list[Unknown | GraphQLError] | list[Unknown | PendingResult] | bool | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :349:60 - Argument to bound method `__init__` is incorrect: Expected `dict[str, Any] | None`, found `Any | dict[Unknown | str, Unknown | str] | list[Unknown | GraphQLError] | list[Unknown | PendingResult] | bool | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :349:60 - Argument to bound method `__init__` is incorrect: Expected `list[GraphQLError] | None`, found `Any | dict[Unknown | str, Unknown | str] | list[Unknown | GraphQLError] | list[Unknown | PendingResult] | bool | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :349:60 - Argument to bound method `__init__` is incorrect: Expected `list[PendingResult] | None`, found `Any | dict[Unknown | str, Unknown | str] | list[Unknown | GraphQLError] | list[Unknown | PendingResult] | bool | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :457:55 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Any | bool | list[Unknown | PendingResult] | list[Unknown] | list[Unknown | CompletedResult] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :457:55 - Argument to bound method `__init__` is incorrect: Expected `dict[str, Any] | None`, found `Any | bool | list[Unknown | PendingResult] | list[Unknown] | list[Unknown | CompletedResult] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :457:55 - Argument to bound method `__init__` is incorrect: Expected `list[CompletedResult] | None`, found `Any | bool | list[Unknown | PendingResult] | list[Unknown] | list[Unknown | CompletedResult] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :457:55 - Argument to bound method `__init__` is incorrect: Expected `list[PendingResult] | None`, found `Any | bool | list[Unknown | PendingResult] | list[Unknown] | list[Unknown | CompletedResult] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :457:55 - Argument to bound method `__init__` is incorrect: Expected `list[Unknown] | None`, found `Any | bool | list[Unknown | PendingResult] | list[Unknown] | list[Unknown | CompletedResult] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :458:63 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Any | bool | list[Unknown | PendingResult] | list[Unknown] | list[Unknown | CompletedResult] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :458:63 - Argument to bound method `__init__` is incorrect: Expected `dict[str, Any] | None`, found `Any | bool | list[Unknown | PendingResult] | list[Unknown] | list[Unknown | CompletedResult] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :458:63 - Argument to bound method `__init__` is incorrect: Expected `list[CompletedResult] | None`, found `Any | bool | list[Unknown | PendingResult] | list[Unknown] | list[Unknown | CompletedResult] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :458:63 - Argument to bound method `__init__` is incorrect: Expected `list[PendingResult] | None`, found `Any | bool | list[Unknown | PendingResult] | list[Unknown] | list[Unknown | CompletedResult] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :458:63 - Argument to bound method `__init__` is incorrect: Expected `list[Unknown] | None`, found `Any | bool | list[Unknown | PendingResult] | list[Unknown] | list[Unknown | CompletedResult] | dict[Unknown | str, Unknown | int]`

tests/execution/test_stream.py

[error] invalid-argument-type - :189:42 - Argument to bound method `__init__` is incorrect: Expected `dict[str, Any] | None`, found `Any | list[Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :189:42 - Argument to bound method `__init__` is incorrect: Expected `list[Any]`, found `Any | list[Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :189:42 - Argument to bound method `__init__` is incorrect: Expected `list[GraphQLError] | None`, found `Any | list[Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :189:42 - Argument to bound method `__init__` is incorrect: Expected `list[str | int] | None`, found `Any | list[Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :189:42 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Any | list[Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :190:50 - Argument to bound method `__init__` is incorrect: Expected `dict[str, Any] | None`, found `Any | list[Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :190:50 - Argument to bound method `__init__` is incorrect: Expected `list[Any]`, found `Any | list[Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :190:50 - Argument to bound method `__init__` is incorrect: Expected `list[GraphQLError] | None`, found `Any | list[Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :190:50 - Argument to bound method `__init__` is incorrect: Expected `list[str | int] | None`, found `Any | list[Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`
[error] invalid-argument-type - :190:50 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Any | list[Unknown | str] | str | list[Unknown | str | int] | list[Unknown | GraphQLError] | dict[Unknown | str, Unknown | int]`

tests/test_user_registry.py

[error] invalid-argument-type - :578:16 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["id"]` on object of type `str`
[warning] unused-ignore-comment - :288:51 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :343:51 - Unused blanket `type: ignore` directive

tests/type/test_definition.py

[error] invalid-argument-type - :158:72 -
Old: Argument to function `parse_literal` is incorrect: Expected `ValueNode`, found `dict[@Todo, @Todo]`
New: Argument to function `parse_literal` is incorrect: Expected `ValueNode`, found `dict[Unknown | str, Unknown | str]`

tests/type/test_directives.py

[warning] unused-ignore-comment - :66:43 - Unused blanket `type: ignore` directive

hydpy (https://github.com/hydpy-dev/hydpy)

hydpy/core/devicetools.py

[error] no-matching-overload - :2635:17 - No overload matches arguments
[error] no-matching-overload - :3482:17 - No overload matches arguments
[error] no-matching-overload - :3486:31 - No overload matches arguments
[error] no-matching-overload - :3491:21 - No overload matches arguments

hydra-zen (https://github.com/mit-ll-responsible-ai/hydra-zen)

src/hydra_zen/_launch.py

[warning] unused-ignore-comment - :422:81 - Unused blanket `type: ignore` directive

ibis (https://github.com/ibis-project/ibis)

ibis/backends/bigquery/tests/unit/udf/test_core.py

[error] unresolved-attribute - :265:13 -
Old: Type `dict[@Todo, @Todo]` has no attribute `a`
New: Type `dict[Unknown | str, Unknown | int]` has no attribute `a`

ibis/backends/clickhouse/tests/conftest.py

[warning] possibly-missing-attribute - :94:9 -
Old: Attribute `setdefault` on type `Mapping[str, Any] | dict[@Todo, @Todo]` may be missing
New: Attribute `setdefault` on type `Mapping[str, Any] | dict[Unknown, Unknown]` may be missing
[warning] possibly-missing-attribute - :95:9 -
Old: Attribute `setdefault` on type `Mapping[str, Any] | dict[@Todo, @Todo]` may be missing
New: Attribute `setdefault` on type `Mapping[str, Any] | dict[Unknown, Unknown]` may be missing

ibis/backends/impala/__init__.py

[warning] possibly-missing-attribute - :1493:14 - Attribute `startswith` on type `None | Unknown | str` may be missing

ibis/backends/impala/tests/test_exprs.py

[error] invalid-argument-type - :417:32 - Argument to function `interval` is incorrect: Expected `str`, found `Unknown | int`

ibis/backends/impala/tests/test_value_exprs.py

[error] invalid-argument-type - :201:28 - Argument to function `interval` is incorrect: Expected `str`, found `Unknown | int`

ibis/backends/mysql/datatypes.py

[error] invalid-argument-type - :72:23 - Argument to function `issubclass` is incorrect: Expected `type`, found `Unknown | <class 'Decimal'> | <class 'Int8'> | <class 'Int16'> | <class 'Int32'> | <class 'Float32'> | <class 'Float64'> | <class 'Null'> | <class 'Int64'> | <class 'Date'> | <class 'Time'> | <class 'Timestamp'> | <class 'UInt8'> | <class 'String'> | <class 'JSON'> | partial[Unknown] | <class 'Binary'>`

ibis/backends/polars/tests/test_client.py

[error] non-subscriptable - :39:37 - Cannot subscript object of type `int` with no `__getitem__` method

ibis/backends/sql/rewrites.py

[error] invalid-assignment - :53:5 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to `FrozenDict[str, Value[Unknown, Any]]`
New: Object of type `dict[Unknown, Unknown]` is not assignable to `FrozenDict[str, Value[Unknown, Any]]`

ibis/expr/tests/test_format.py

[error] invalid-argument-type - :299:24 - Argument to bound method `fill_null` is incorrect: Expected `Scalar | Mapping[str, Scalar]`, found `dict[Unknown | str, Unknown | int]`

ibis/expr/types/temporal.py

[error] invalid-argument-type - :1087:38 - Argument to function `interval` is incorrect: Expected `str`, found `Unknown | int | None`

ibis/tests/expr/test_temporal.py

[error] invalid-argument-type - :75:25 - Argument to function `interval` is incorrect: Expected `str`, found `Unknown | int`
[error] invalid-argument-type - :919:41 - Argument to function `interval` is incorrect: Expected `str`, found `Unknown | int`

ignite (https://github.com/pytorch/ignite)

tests/ignite/handlers/test_fbresearch_logger.py

[error] invalid-assignment - :79:5 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to attribute `output` on type `Unknown | State`
New: Object of type `dict[Unknown | str, Unknown | float]` is not assignable to attribute `output` on type `Unknown | State`

tests/ignite/handlers/test_state_param_scheduler.py

[error] invalid-argument-type - :336:49 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | int | float | list[Unknown | int]`
[error] invalid-argument-type - :336:49 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | int | float | list[Unknown | int]`
[error] invalid-argument-type - :336:49 - Argument to bound method `__init__` is incorrect: Expected `int | float`, found `Unknown | str | int | float | list[Unknown | int]`
[error] invalid-argument-type - :336:49 - Argument to bound method `__init__` is incorrect: Expected `int | float`, found `Unknown | str | int | float | list[Unknown | int]`
[error] invalid-argument-type - :336:49 - Argument to bound method `__init__` is incorrect: Expected `list[int]`, found `Unknown | str | int | float | list[Unknown | int]`
[error] invalid-argument-type - :336:49 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | int | float | list[Unknown | int]`
[error] invalid-argument-type - :342:84 - Argument to bound method `plot_values` is incorrect: Expected `Mapping[Unknown, Unknown]`, found `Unknown | str | int | float | list[Unknown | int]`

tests/ignite/metrics/test_metric.py

[error] invalid-assignment - :1214:9 - Object of type `Unknown` is not assignable to attribute `_num_correct` on type `Metric | Unknown`
[error] invalid-assignment - :1215:9 - Object of type `Unknown` is not assignable to attribute `_num_examples` on type `Metric | Unknown`
[error] invalid-assignment - :1216:9 - Object of type `Unknown` is not assignable to attribute `_numerator` on type `Metric | Unknown`
[error] invalid-assignment - :1217:9 - Object of type `Unknown` is not assignable to attribute `_denominator` on type `Metric | Unknown`
[error] invalid-assignment - :1218:9 - Object of type `Unknown` is not assignable to attribute `_weight` on type `Metric | Unknown`
[error] invalid-assignment - :1219:9 - Object of type `Unknown` is not assignable to attribute `_updated` on type `Metric | Unknown`

isort (https://github.com/pycqa/isort)

isort/parse.py

[error] invalid-assignment - :425:29 - Object of type `Unknown | dict[Unknown, Unknown]` is not assignable to `list[Any] | None`
[error] invalid-assignment - :432:33 - Object of type `Unknown | dict[Unknown, Unknown]` is not assignable to `list[Any] | None`
[error] invalid-assignment - :436:33 - Object of type `Unknown | dict[Unknown, Unknown]` is not assignable to `list[Any] | None`
[error] invalid-assignment - :486:21 - Object of type `Unknown | dict[Unknown, Unknown]` is not assignable to `list[Any] | None`

jax (https://github.com/google/jax)

jax/_src/custom_partitioning_sharding_rule.py

[error] invalid-argument-type - :514:20 -
Old: Argument to function `__new__` is incorrect: Expected `SupportsIndex`, found `@Todo | None | Literal[0]`
New: Argument to function `__new__` is incorrect: Expected `SupportsIndex`, found `int | None`

jax/_src/interpreters/pxla.py

[error] invalid-argument-type - :989:32 - Argument is incorrect: Expected `ShapedArray`, found `AbstractValue`

jax/_src/numpy/lax_numpy.py

[warning] unused-ignore-comment - :9385:35 - Unused blanket `type: ignore` directive

jax/_src/pallas/fuser/block_spec.py

[warning] possibly-missing-attribute - :401:10 - Attribute `index_map` on type `BlockSpec | Unknown | NoBlockSpec` may be missing

jax/_src/xla_bridge.py

[warning] unused-ignore-comment - :173:81 - Unused blanket `type: ignore` directive

jax/experimental/array_serialization/serialization_test.py

[error] invalid-assignment - :969:5 -
Old: Object of type `Array` is not assignable to attribute `a` on type `Unknown | Array | dict[@Todo, @Todo] | P`
New: Object of type `Array` is not assignable to attribute `a` on type `Unknown | Array | dict[Unknown | str, Unknown | list[Unknown | Array | tuple[Array, Array]]] | P`

kornia (https://github.com/kornia/kornia)

kornia/contrib/models/sam/model.py

[error] unresolved-attribute - :212:35 - Type `SamConfig` has no attribute `num_heads`

kornia/contrib/models/tiny_vit.py

[error] invalid-argument-type - :411:74 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Any | list[@Todo] | PatchMerging | None | bool`
[error] invalid-argument-type - :411:74 - Argument to bound method `__init__` is incorrect: Expected `int | float | list[int | float]`, found `Any | list[@Todo] | PatchMerging | None | bool`
[error] invalid-argument-type - :411:74 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Any | list[@Todo] | PatchMerging | None | bool`
[error] invalid-argument-type - :411:74 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Any | list[@Todo] | PatchMerging | None | bool`
[error] invalid-argument-type - :420:21 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Any | list[@Todo] | PatchMerging | None | bool`
[error] invalid-argument-type - :420:21 - Argument to bound method `__init__` is incorrect: Expected `int | float | list[int | float]`, found `Any | list[@Todo] | PatchMerging | None | bool`
[error] invalid-argument-type - :420:21 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Any | list[@Todo] | PatchMerging | None | bool`
[error] invalid-argument-type - :420:21 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Any | list[@Todo] | PatchMerging | None | bool`

kornia/feature/loftr/loftr.py

[error] invalid-argument-type - :105:13 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Any | int | list[Unknown | int] | list[Unknown | str] | str | float`
[error] non-subscriptable - :105:13 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :105:13 - Method `__getitem__` of type `Overload[(index: SupportsIndex, /) -> int, (index: slice[Any, Any, Any], /) -> tuple[int, ...]]` cannot be called with key of type `Literal["d_model"]` on object of type `tuple[int, int]`
[error] invalid-argument-type - :105:13 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["d_model"]` on object of type `str`
[error] invalid-argument-type - :105:42 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Any | int | list[Unknown | int] | list[Unknown | str] | str | float`
[error] non-subscriptable - :105:55 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :105:55 - Method `__getitem__` of type `Overload[(index: SupportsIndex, /) -> int, (index: slice[Any, Any, Any], /) -> tuple[int, ...]]` cannot be called with key of type `Literal["temp_bug_fix"]` on object of type `tuple[int, int]`
[error] invalid-argument-type - :105:55 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["temp_bug_fix"]` on object of type `str`
[error] invalid-argument-type - :107:53 - Argument to bound method `__init__` is incorrect: Expected `dict[str, Any]`, found `Any | str | tuple[int, int] | int | dict[Unknown | str, Unknown | int | list[Unknown | int]] | dict[Unknown | str, Unknown | int | list[Unknown | str] | str] | dict[Unknown | str, Unknown | float | int | str]`
[error] invalid-argument-type - :108:47 - Argument to bound method `__init__` is incorrect: Expected `dict[str, Any]`, found `Any | str | tuple[int, int] | int | dict[Unknown | str, Unknown | int | list[Unknown | int]] | dict[Unknown | str, Unknown | int | list[Unknown | str] | str] | dict[Unknown | str, Unknown | float | int | str]`
[error] invalid-argument-type - :110:51 - Argument to bound method `__init__` is incorrect: Expected `dict[str, Any]`, found `Any | str | tuple[int, int] | int | dict[Unknown | str, Unknown | int | list[Unknown | int]] | dict[Unknown | str, Unknown | int | list[Unknown | str] | str] | dict[Unknown | str, Unknown | float | int | str]`

manticore (https://github.com/trailofbits/manticore)

manticore/core/parser/parser.py

[error] too-many-positional-arguments - :223:51 - Too many positional arguments: expected 1, got 2
[error] too-many-positional-arguments - :223:51 - Too many positional arguments: expected 1, got 2
[error] missing-argument - :232:11 - No argument provided for required parameter `size`
[error] missing-argument - :233:22 - No argument provided for required parameter `size`
[error] too-many-positional-arguments - :235:51 - Too many positional arguments: expected 1, got 2
[error] too-many-positional-arguments - :235:51 - Too many positional arguments: expected 1, got 2
[error] missing-argument - :257:12 - No argument provided for required parameter `size`

manticore/native/cpu/x86.py

[warning] unused-ignore-comment - :1035:31 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :1041:32 - Unused blanket `type: ignore` directive

materialize (https://github.com/MaterializeInc/materialize)

ci/deploy/pypi.py

[error] invalid-assignment - :23:1 - Object of type `dict[Unknown | str, Unknown | str]` is not assignable to `dict[str, Literal["setup.py", "pyproject.toml"]]`

misc/python/materialize/cli/orchestratord.py

[warning] possibly-missing-implicit-call - :293:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str] | dict[Unknown | str, Unknown]` may be missing
[warning] possibly-missing-implicit-call - :296:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str] | dict[Unknown | str, Unknown]` may be missing

test/balancerd/mzcompose.py

[error] invalid-argument-type - :80:23 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["client_id"]` on object of type `str`
[error] invalid-argument-type - :80:47 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["secret"]` on object of type `str`

test/cloudtest/test_compute.py

[error] unsupported-operator - :213:20 - Operator `|` is unsupported between objects of type `Unknown | int | None | str | dict[Unknown | str, Unknown | str]` and `dict[Unknown | str, Unknown | str]`

test/limits/mzcompose.py

[error] invalid-argument-type - :1833:23 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["client_id"]` on object of type `str`
[error] invalid-argument-type - :1833:47 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["secret"]` on object of type `str`

test/sqlsmith/mzcompose.py

[error] not-iterable - :192:18 - Object of type `Any | list[Unknown] | str | int` may not be iterable
[error] invalid-argument-type - :193:31 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["message"]` on object of type `str`
[error] invalid-argument-type - :195:21 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Unknown | str` on object of type `str`
[error] invalid-argument-type - :199:47 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Unknown | str` on object of type `str`
[error] unsupported-operator - :201:12 - Operator `>` is not supported for types `list[Unknown]` and `int`, in comparing `Any | list[Unknown] | str | int` with `Literal[0]`

meson (https://github.com/mesonbuild/meson)

mesonbuild/cmake/fileapi.py

[error] unsupported-operator - :195:21 - Operator `+=` is unsupported between objects of type `Path` and `list[Unknown | dict[Unknown, Unknown]]`
[error] unsupported-operator - :195:21 - Operator `+=` is unsupported between objects of type `bool` and `list[Unknown | dict[Unknown, Unknown]]`
[error] unsupported-operator - :200:21 - Operator `+=` is unsupported between objects of type `Path` and `list[Unknown | dict[Unknown, Unknown]]`
[error] unsupported-operator - :200:21 - Operator `+=` is unsupported between objects of type `bool` and `list[Unknown | dict[Unknown, Unknown]]`
[error] unsupported-operator - :218:17 - Operator `+=` is unsupported between objects of type `Path` and `list[Unknown | dict[Unknown | str, Unknown | bool | (list[Unknown] & ~AlwaysFalsy) | (Unknown & ~AlwaysFalsy)]]`
[error] unsupported-operator - :218:17 - Operator `+=` is unsupported between objects of type `bool` and `list[Unknown | dict[Unknown | str, Unknown | bool | (list[Unknown] & ~AlwaysFalsy) | (Unknown & ~AlwaysFalsy)]]`
[error] unsupported-operator - :223:17 - Operator `+=` is unsupported between objects of type `Path` and `list[Unknown | dict[Unknown | str, Unknown | bool | (list[Unknown] & ~AlwaysFalsy) | (Unknown & ~AlwaysFalsy)]]`
[error] unsupported-operator - :223:17 - Operator `+=` is unsupported between objects of type `bool` and `list[Unknown | dict[Unknown | str, Unknown | bool | (list[Unknown] & ~AlwaysFalsy) | (Unknown & ~AlwaysFalsy)]]`
[error] unsupported-operator - :252:17 - Operator `+=` is unsupported between objects of type `Path` and `list[Unknown | dict[str, Any]]`

unittests/optiontests.py

[error] invalid-argument-type - :332:45 - Argument to bound method `set_from_configure_command` is incorrect: Expected `dict[OptionKey, str | None]`, found `dict[Unknown | OptionKey, Unknown | bool]`

mesonbuild/backend/ninjabackend.py

[warning] possibly-missing-attribute - :850:9 - Attribute `extend` on type `@Todo | str | list[str] | list[Unknown]` may be missing
[warning] possibly-missing-attribute - :851:9 - Attribute `extend` on type `@Todo | str | list[str] | list[Unknown]` may be missing
[warning] possibly-missing-attribute - :853:13 - Attribute `extend` on type `@Todo | str | list[str] | list[Unknown]` may be missing

mesonbuild/backend/vs2010backend.py

[error] invalid-assignment - :347:21 - Method `__setitem__` of type `bound method dict[str, Target].__setitem__(key: str, value: Target, /) -> None` cannot be called with a key of type `str` and a value of type `BuildTarget | CustomTarget | CustomTargetIndex` on object of type `dict[str, Target]`

mesonbuild/compilers/detect.py

[error] invalid-assignment - :1109:21 - Method `__setitem__` of type `bound method dict[str, str | bool].__setitem__(key: str, value: str | bool, /) -> None` cannot be called with a key of type `Literal["machine"]` and a value of type `Unknown | str | None` on object of type `dict[str, str | bool]`

mesonbuild/interpreter/type_checking.py

[error] invalid-assignment - :306:1 -
Old: Object of type `KwargInfo[dict[@Todo, @Todo]]` is not assignable to `KwargInfo[str | list[str] | dict[str, @Todo]]`
New: Object of type `KwargInfo[dict[Unknown, Unknown]]` is not assignable to `KwargInfo[str | list[str] | dict[str, @Todo]]`

mesonbuild/mconf.py

[error] no-matching-overload - :196:13 - No overload of bound method `setdefault` matches arguments

mesonbuild/mintro.py

[warning] possibly-missing-attribute - :161:47 - Attribute `exclude` on type `Unknown | InstallDataBase` may be missing
[error] invalid-assignment - :436:9 - Method `__setitem__` of type `bound method dict[str, str | int | list[str] | dict[str, str]].__setitem__(key: str, value: str | int | list[str] | dict[str, str], /) -> None` cannot be called with a key of type `Literal["workdir"]` and a value of type `str | None` on object of type `dict[str, str | int | list[str] | dict[str, str]]`
[error] invalid-assignment - :437:9 - Method `__setitem__` of type `bound method dict[str, str | int | list[str] | dict[str, str]].__setitem__(key: str, value: str | int | list[str] | dict[str, str], /) -> None` cannot be called with a key of type `Literal["timeout"]` and a value of type `int | None` on object of type `dict[str, str | int | list[str] | dict[str, str]]`
[error] invalid-assignment - :464:5 - Object of type `dict[Unknown | str, Unknown | str | None | list[str] | list[@Todo]]` is not assignable to `dict[str, str | list[str] | list[dict[str, str]]]`
[error] invalid-assignment - :473:9 - Object of type `dict[Unknown | str, Unknown | None]` is not assignable to `dict[str, str]`

mesonbuild/rewriter.py

[warning] possibly-missing-implicit-call - :494:9 - Method `__setitem__` of type `Any | str | dict[Unknown | str, Unknown | list[@Todo]]` may be missing
[error] invalid-argument-type - :518:13 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["default_options"]` on object of type `str`

unittests/allplatformstests.py

[error] invalid-assignment - :223:9 - Object of type `dict[Unknown | str, Unknown | tuple[list[Unknown | str], str]]` is not assignable to attribute `values` of type `dict[str, tuple[str | int, str | None]]`
[warning] possibly-missing-implicit-call - :3117:13 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str | dict[@Todo, @Todo]] | dict[@Todo, @Todo] | dict[Unknown | str, Unknown | list[str] | str] | dict[Unknown | str, Unknown | list[Unknown | str]] | dict[Unknown | str, Unknown | bool] | dict[Unknown | str, Unknown]` may be missing
[warning] possibly-missing-implicit-call - :3143:21 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str | dict[@Todo, @Todo]] | dict[@Todo, @Todo] | dict[Unknown | str, Unknown | list[str] | str] | dict[Unknown | str, Unknown | list[Unknown | str]] | dict[Unknown | str, Unknown | bool] | dict[Unknown | str, Unknown]` may be missing
[error] invalid-argument-type - :3145:41 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["dynamic"]` on object of type `str`

unittests/internaltests.py

[error] unsupported-operator - :302:50 - Operator `+` is unsupported between objects of type `Unknown | list[Unknown | str] | str` and `Literal[".ok"]`
[error] unsupported-operator - :305:36 - Operator `+` is unsupported between objects of type `Unknown | list[Unknown | str] | str` and `Literal[".hah"]`
[error] unsupported-operator - :327:47 - Operator `+` is unsupported between objects of type `Unknown | list[Unknown | str] | str` and `Literal[".ok"]`
[error] unsupported-operator - :330:36 - Operator `+` is unsupported between objects of type `Unknown | list[Unknown | str] | str` and `Literal[".hah"]`
[error] invalid-argument-type - :1437:88 - Argument to bound method `__init__` is incorrect: Expected `dict[list[Unknown] | ContainerTypeInfo | type, str | tuple[str, str]] | None`, found `dict[Unknown | str, Unknown | str]`
[error] invalid-argument-type - :1437:122 - Argument to bound method `__init__` is incorrect: Expected `dict[list[Unknown] | ContainerTypeInfo | type, str | tuple[str, str]] | None`, found `dict[Unknown | str, Unknown | str]`
[error] invalid-argument-type - :1438:75 - Argument to bound method `__init__` is incorrect: Expected `dict[dict[Unknown, Unknown] | ContainerTypeInfo | type, str | tuple[str, str]] | None`, found `dict[Unknown | str, Unknown | str | tuple[str, str]]`
[error] invalid-argument-type - :1438:143 - Argument to bound method `__init__` is incorrect: Expected `dict[dict[Unknown, Unknown] | ContainerTypeInfo | type, str | tuple[str, str]] | None`, found `dict[Unknown | str, Unknown | str | tuple[str, str]]`

mitmproxy (https://github.com/mitmproxy/mitmproxy)

mitmproxy/addons/savehar.py

[warning] possibly-missing-implicit-call - :206:17 - Method `__setitem__` of type `Unknown | int | str | dict[Unknown | str, Unknown | int]` may be missing
[warning] possibly-missing-implicit-call - :207:17 - Method `__setitem__` of type `Unknown | int | str | dict[Unknown | str, Unknown | int]` may be missing
[warning] possibly-missing-implicit-call - :211:21 - Method `__setitem__` of type `Unknown | int | str | dict[Unknown | str, Unknown | int]` may be missing
[warning] possibly-missing-implicit-call - :213:21 - Method `__setitem__` of type `Unknown | int | str | dict[Unknown | str, Unknown | int]` may be missing
[error] invalid-assignment - :260:13 - Method `__setitem__` of type `Any | (bound method dict[Unknown | str, Unknown | str | int].__setitem__(key: Unknown | str, value: Unknown | str | int, /) -> None) | (bound method dict[Unknown | str, Unknown | int | str | dict[Unknown | str, Unknown | int]].__setitem__(key: Unknown | str, value: Unknown | int | str | dict[Unknown | str, Unknown | int], /) -> None) | (bound method dict[Unknown | str, Unknown | int | str | list[Unknown] | dict[Unknown, Unknown] | None].__setitem__(key: Unknown | str, value: Unknown | int | str | list[Unknown] | dict[Unknown, Unknown] | None, /) -> None) | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None) | (bound method dict[str, int | float | None].__setitem__(key: str, value: int | float | None, /) -> None)` cannot be called with a key of type `Literal["postData"]` and a value of type `dict[Unknown | str, Unknown | str | None]` on object of type `Any | int | dict[Unknown | str, Unknown | str | int] | dict[Unknown | str, Unknown | int | str | dict[Unknown | str, Unknown | int]] | dict[Unknown | str, Unknown | int | str | list[Unknown] | dict[Unknown, Unknown] | None] | dict[Unknown, Unknown] | dict[str, int | float | None]`

mitmproxy/addons/dumper.py

[error] invalid-assignment - :38:1 - Object of type `dict[Unknown | str, Unknown | dict[str, str] | dict[str, bool]]` is not assignable to `dict[str, dict[str, str | bool]]`

mitmproxy/io/compat.py

[warning] possibly-missing-implicit-call - :324:9 - Method `__setitem__` of type `Unknown | dict[Unknown, Unknown] | str | dict[Unknown | str, Unknown | bytes | None | list[Unknown] | int] | None | int` may be missing
[warning] possibly-missing-attribute - :333:30 - Attribute `get` on type `Unknown | dict[Unknown, Unknown] | str | dict[Unknown | str, Unknown | bytes | None | list[Unknown] | int] | None | int` may be missing

mitmproxy/net/encoding.py

[error] invalid-argument-type - :62:47 - Argument is incorrect: Expected `bytes`, found `str | bytes`
[error] invalid-argument-type - :120:47 - Argument is incorrect: Expected `bytes`, found `str | bytes`

test/mitmproxy/test_http.py

[error] invalid-assignment - :602:9 -
Old: Method `__setitem__` of type `bound method MultiDictView[str, tuple[str, MultiDict[str, str | None]]].__setitem__(key: str, value: tuple[str, MultiDict[str, str | None]]) -> None` cannot be called with a key of type `Literal["foo"]` and a value of type `tuple[Literal["bar"], dict[@Todo, @Todo]]` on object of type `MultiDictView[str, tuple[str, MultiDict[str, str | None]]]`
New: Method `__setitem__` of type `bound method MultiDictView[str, tuple[str, MultiDict[str, str | None]]].__setitem__(key: str, value: tuple[str, MultiDict[str, str | None]]) -> None` cannot be called with a key of type `Literal["foo"]` and a value of type `tuple[Literal["bar"], dict[Unknown, Unknown]]` on object of type `MultiDictView[str, tuple[str, MultiDict[str, str | None]]]`

mkdocs (https://github.com/mkdocs/mkdocs)

mkdocs/tests/build_tests.py

[error] invalid-assignment - :466:9 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to attribute `meta` on type `Page | None`
New: Object of type `dict[Unknown | str, Unknown | str]` is not assignable to attribute `meta` on type `Page | None`

mkdocs/tests/plugin_tests.py

[error] invalid-argument-type - :211:67 -
Old: Argument to bound method `on_page_content` is incorrect: Expected `MkDocsConfig`, found `dict[@Todo, @Todo]`
New: Argument to bound method `on_page_content` is incorrect: Expected `MkDocsConfig`, found `dict[Unknown, Unknown]`
[error] invalid-argument-type - :229:67 -
Old: Argument to bound method `on_page_content` is incorrect: Expected `MkDocsConfig`, found `dict[@Todo, @Todo]`
New: Argument to bound method `on_page_content` is incorrect: Expected `MkDocsConfig`, found `dict[Unknown, Unknown]`
[error] invalid-argument-type - :238:58 -
Old: Argument to bound method `on_nav` is incorrect: Expected `MkDocsConfig`, found `dict[@Todo, @Todo]`
New: Argument to bound method `on_nav` is incorrect: Expected `MkDocsConfig`, found `dict[Unknown, Unknown]`
[error] invalid-argument-type - :245:68 -
Old: Argument to bound method `on_page_read_source` is incorrect: Expected `MkDocsConfig`, found `dict[@Todo, @Todo]`
New: Argument to bound method `on_page_read_source` is incorrect: Expected `MkDocsConfig`, found `dict[Unknown, Unknown]`
[error] invalid-argument-type - :252:50 -
Old: Argument to bound method `on_pre_build` is incorrect: Expected `MkDocsConfig`, found `dict[@Todo, @Todo]`
New: Argument to bound method `on_pre_build` is incorrect: Expected `MkDocsConfig`, found `dict[Unknown, Unknown]`
[error] invalid-argument-type - :257:69 -
Old: Argument to bound method `on_page_markdown` is incorrect: Expected `MkDocsConfig`, found `dict[@Todo, @Todo]`
New: Argument to bound method `on_page_markdown` is incorrect: Expected `MkDocsConfig`, found `dict[Unknown, Unknown]`

mkdocs/tests/structure/nav_tests.py

[error] invalid-argument-type - :96:18 -
Old: Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | dict[@Todo, @Todo]`
New: Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | dict[Unknown | str, Unknown | str]`

mkdocs/tests/structure/page_tests.py

[error] invalid-argument-type - :670:39 -
Old: Argument expression after ** must be a mapping type: Found `Unknown | dict[@Todo, @Todo] | str | None`
New: Argument expression after ** must be a mapping type: Found `Unknown | dict[Unknown | str, Unknown | str] | str | None | dict[Unknown, Unknown]`
[error] invalid-argument-type - :693:39 -
Old: Argument expression after ** must be a mapping type: Found `Unknown | dict[@Todo, @Todo] | str`
New: Argument expression after ** must be a mapping type: Found `Unknown | dict[Unknown | str, Unknown | str] | str`

mkdocs/theme.py

[error] invalid-argument-type - :73:53 - Argument to function `parse_locale` is incorrect: Expected `str`, found `str | Any | None`

mkosi (https://github.com/systemd/mkosi)

mkosi/config.py

[error] invalid-return-type - :290:16 -
Old: Return type does not match returned value: expected `str`, found `@Todo | None`
New: Return type does not match returned value: expected `str`, found `Unknown | str | None`
[error] invalid-return-type - :496:16 -
Old: Return type does not match returned value: expected `Architecture`, found `@Todo | None`
New: Return type does not match returned value: expected `Architecture`, found `Unknown | Architecture | None`
[error] invalid-return-type - :539:16 -
Old: Return type does not match returned value: expected `str`, found `@Todo | None`
New: Return type does not match returned value: expected `str`, found `Unknown | str | None`
[error] invalid-return-type - :561:16 -
Old: Return type does not match returned value: expected `str`, found `@Todo | None`
New: Return type does not match returned value: expected `str`, found `Unknown | str | None`

mkosi/distributions/arch.py

[error] invalid-return-type - :125:16 -
Old: Return type does not match returned value: expected `str`, found `@Todo | None`
New: Return type does not match returned value: expected `str`, found `Unknown | str | None`

mkosi/distributions/azure.py

[error] invalid-return-type - :111:16 -
Old: Return type does not match returned value: expected `str`, found `@Todo | None`
New: Return type does not match returned value: expected `str`, found `Unknown | str | None`

mkosi/distributions/centos.py

[error] invalid-return-type - :96:16 -
Old: Return type does not match returned value: expected `str`, found `@Todo | None`
New: Return type does not match returned value: expected `str`, found `Unknown | str | None`

mkosi/distributions/debian.py

[error] invalid-return-type - :244:16 -
Old: Return type does not match returned value: expected `str`, found `@Todo | None`
New: Return type does not match returned value: expected `str`, found `Unknown | str | None`

mkosi/distributions/fedora.py

[error] invalid-return-type - :259:16 -
Old: Return type does not match returned value: expected `str`, found `@Todo | None`
New: Return type does not match returned value: expected `str`, found `Unknown | str | None`

mkosi/distributions/kali.py

[error] invalid-return-type - :61:16 -
Old: Return type does not match returned value: expected `str`, found `@Todo | None`
New: Return type does not match returned value: expected `str`, found `Unknown | str | None`

mkosi/distributions/mageia.py

[error] invalid-return-type - :68:16 -
Old: Return type does not match returned value: expected `str`, found `@Todo | None`
New: Return type does not match returned value: expected `str`, found `Unknown | str | None`

mkosi/distributions/openmandriva.py

[error] invalid-return-type - :64:16 -
Old: Return type does not match returned value: expected `str`, found `@Todo | None`
New: Return type does not match returned value: expected `str`, found `Unknown | str | None`

mkosi/distributions/opensuse.py

[error] invalid-return-type - :252:16 -
Old: Return type does not match returned value: expected `str`, found `@Todo | None`
New: Return type does not match returned value: expected `str`, found `Unknown | str | None`

mongo-python-driver (https://github.com/mongodb/mongo-python-driver)

bson/decimal128.py

[warning] unused-ignore-comment - :60:55 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :106:37 - Unused blanket `type: ignore` directive

bson/json_util.py

[error] invalid-assignment - :1015:9 - Method `__setitem__` of type `bound method dict[int, (Any, JSONOptions, /) -> Any].__setitem__(key: int, value: (Any, JSONOptions, /) -> Any, /) -> None` cannot be called with a key of type `object` and a value of type `((Any, JSONOptions, /) -> Any) | ((obj: Any, dummy0: Any) -> Any) | ((obj: bytes, json_options: JSONOptions) -> dict[Unknown, Unknown]) | ((obj: datetime, json_options: JSONOptions) -> dict[Unknown, Unknown]) | ((obj: Any, json_options: JSONOptions) -> dict[Unknown, Unknown]) | ((obj: int | float, json_options: JSONOptions) -> Any) | ((obj: int, json_options: JSONOptions) -> Any) | ((obj: UUID, json_options: JSONOptions) -> dict[Unknown, Unknown]) | ((obj: Binary, json_options: JSONOptions) -> dict[Unknown, Unknown]) | ((obj: Int64, json_options: JSONOptions) -> Any) | ((obj: Code, json_options: JSONOptions) -> dict[Unknown, Unknown]) | ((obj: DBRef, json_options: JSONOptions) -> dict[Unknown, Unknown]) | ((dummy0: Any, dummy1: Any) -> dict[Unknown, Unknown]) | ((obj: ObjectId, dummy0: Any) -> dict[Unknown, Unknown]) | ((obj: Timestamp, dummy0: Any) -> dict[Unknown, Unknown])` on object of type `dict[int, (Any, JSONOptions, /) -> Any]`

pymongo/asynchronous/auth.py

[error] invalid-assignment - :365:1 - Object of type `dict[Unknown | str, Unknown | ((credentials: Unknown, conn: AsyncConnection) -> CoroutineType[Any, Any, None]) | ((credentials: Unknown, conn: AsyncConnection, reauthenticate: bool) -> CoroutineType[Any, Any, Mapping[str, Any] | None]) | partial[Unknown]]` is not assignable to `Mapping[str, (...) -> Coroutine[Any, Any, None]]`

pymongo/asynchronous/server.py

[warning] possibly-missing-implicit-call - :275:17 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | Int64 | str] | int` may be missing
[warning] possibly-missing-implicit-call - :277:17 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | Int64 | str] | int` may be missing

pymongo/asynchronous/topology.py

[warning] unused-ignore-comment - :237:29 - Unused blanket `type: ignore` directive

pymongo/synchronous/auth.py

[error] invalid-assignment - :360:1 - Object of type `dict[Unknown | str, Unknown | ((credentials: Unknown, conn: Connection) -> None) | ((credentials: Unknown, conn: Connection, reauthenticate: bool) -> Mapping[str, Any] | None) | partial[Unknown]]` is not assignable to `Mapping[str, (...) -> None]`

pymongo/synchronous/server.py

[warning] possibly-missing-implicit-call - :275:17 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | Int64 | str] | int` may be missing
[warning] possibly-missing-implicit-call - :277:17 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | Int64 | str] | int` may be missing

pymongo/synchronous/topology.py

[warning] unused-ignore-comment - :237:29 - Unused blanket `type: ignore` directive

mypy_primer (https://github.com/hauntsaninja/mypy_primer)

mypy_primer/main.py

[error] invalid-argument-type - :59:87 - Argument to function `setup_mypy` is incorrect: Expected `bool`, found `Unknown | str | None | int | Path`
[error] invalid-argument-type - :59:87 - Argument to function `setup_mypy` is incorrect: Expected `int | None`, found `Unknown | str | None | int | Path`
[error] invalid-argument-type - :59:87 - Argument to function `setup_mypy` is incorrect: Expected `str | None`, found `Unknown | str | None | int | Path`
[error] invalid-argument-type - :59:87 - Argument to function `setup_pyrefly` is incorrect: Expected `Path | None`, found `Unknown | str | None | int | Path`
[error] invalid-argument-type - :59:87 - Argument to function `setup_pyrefly` is incorrect: Expected `str | None`, found `Unknown | str | None | int | Path`
[error] invalid-argument-type - :59:87 - Argument to function `setup_pyright` is incorrect: Expected `str | None`, found `Unknown | str | None | int | Path`
[error] invalid-argument-type - :59:87 - Argument to function `setup_ty` is incorrect: Expected `str | None`, found `Unknown | str | None | int | Path`

openlibrary (https://github.com/internetarchive/openlibrary)

openlibrary/core/observations.py

[warning] possibly-missing-attribute - :581:13 - Attribute `append` on type `Unknown | list[Unknown] | defaultdict[Unknown, Unknown]` may be missing
[error] not-iterable - :583:22 - Object of type `Unknown | int | str | list[Unknown | int] | list[Unknown | dict[Unknown | str, Unknown | int | str]]` may not be iterable
[warning] possibly-missing-attribute - :584:20 - Attribute `get` on type `Unknown | str | int | dict[Unknown | str, Unknown | int | str]` may be missing
[error] invalid-argument-type - :585:21 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown, (s: slice[Any, Any, Any], /) -> list[Unknown]]` cannot be called with key of type `Unknown | int | str | list[Unknown | int] | list[Unknown | dict[Unknown | str, Unknown | int | str]]` on object of type `list[Unknown]`
[error] non-subscriptable - :585:55 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :585:55 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["id"]` on object of type `str`
[error] non-subscriptable - :627:21 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :627:21 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["id"]` on object of type `str`
[error] non-subscriptable - :627:40 - Cannot subscript object of type `int` with no `__getitem__` method
[error] invalid-argument-type - :627:40 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["name"]` on object of type `str`
[warning] possibly-missing-attribute - :627:62 - Attribute `get` on type `Unknown | str | int | dict[Unknown | str, Unknown | int | str]` may be missing
[error] not-iterable - :628:26 - Object of type `Unknown | int | str | list[Unknown | int] | list[Unknown | dict[Unknown | str, Unknown | int | str]]` may not be iterable

openlibrary/plugins/importapi/import_opds.py

[error] call-non-callable - :64:30 - Object of type `str` is not callable

openlibrary/plugins/importapi/import_rdf.py

[error] call-non-callable - :82:30 - Object of type `str` is not callable

openlibrary/accounts/model.py

[warning] possibly-missing-attribute - :844:9 - Attribute `get` on type `Unknown | bool | dict[Unknown | str, Unknown | (Unknown & ~AlwaysFalsy)]` may be missing
[warning] possibly-missing-attribute - :851:12 - Attribute `get` on type `Unknown | bool | dict[Unknown | str, Unknown | (Unknown & ~AlwaysFalsy)]` may be missing
[warning] possibly-missing-attribute - :852:30 - Attribute `get` on type `Unknown | bool | dict[Unknown | str, Unknown | (Unknown & ~AlwaysFalsy)]` may be missing
[warning] possibly-missing-attribute - :939:23 - Attribute `pop` on type `Unknown | bool | dict[Unknown | str, Unknown | (Unknown & ~AlwaysFalsy)]` may be missing
[warning] possibly-missing-attribute - :940:23 - Attribute `pop` on type `Unknown | bool | dict[Unknown | str, Unknown | (Unknown & ~AlwaysFalsy)]` may be missing

openlibrary/catalog/add_book/__init__.py

[warning] unused-ignore-comment - :1096:50 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :1099:78 - Unused blanket `type: ignore` directive

openlibrary/plugins/books/dynlinks.py

[warning] possibly-missing-attribute - :355:17 - Attribute `insert` on type `Unknown | str | list[@Todo] | None` may be missing
[error] invalid-argument-type - :399:33 - Argument to function `trim` is incorrect: Expected `dict[Unknown, Unknown]`, found `Unknown | str | list[@Todo] | None`
[error] invalid-argument-type - :400:37 - Argument to function `trim` is incorrect: Expected `dict[Unknown, Unknown]`, found `Unknown | str | list[@Todo] | None`

openlibrary/plugins/importapi/code.py

[warning] possibly-missing-attribute - :691:21 - Attribute `append` on type `Unknown | str | list[Unknown]` may be missing
[warning] possibly-missing-attribute - :693:21 - Attribute `append` on type `Unknown | str | list[Unknown]` may be missing
[warning] possibly-missing-attribute - :695:21 - Attribute `append` on type `Unknown | str | list[Unknown]` may be missing

openlibrary/plugins/openlibrary/lists.py

[error] invalid-assignment - :439:13 - Method `__setitem__` of type `Unknown | (bound method dict[Unknown | str, Unknown].__setitem__(key: Unknown | str, value: Unknown, /) -> None) | (Overload[(key: SupportsIndex, value: @Todo, /) -> None, (key: slice[Any, Any, Any], value: Iterable[@Todo], /) -> None])` cannot be called with a key of type `Literal["next"]` and a value of type `Unknown` on object of type `Unknown | dict[Unknown | str, Unknown] | int | list[@Todo]`
[error] invalid-assignment - :443:13 - Method `__setitem__` of type `Unknown | (bound method dict[Unknown | str, Unknown].__setitem__(key: Unknown | str, value: Unknown, /) -> None) | (Overload[(key: SupportsIndex, value: @Todo, /) -> None, (key: slice[Any, Any, Any], value: Iterable[@Todo], /) -> None])` cannot be called with a key of type `Literal["prev"]` and a value of type `Unknown` on object of type `Unknown | dict[Unknown | str, Unknown] | int | list[@Todo]`

openlibrary/records/tests/test_functions.py

[warning] possibly-missing-attribute - :192:17 - Attribute `items` on type `Unknown | str | dict[Unknown | str, Unknown | list[Unknown | str]]` may be missing
[warning] possibly-missing-attribute - :220:17 - Attribute `items` on type `Unknown | str | dict[Unknown | str, Unknown | str] | list[Unknown | dict[Unknown | str, Unknown | str]] | dict[Unknown | str, Unknown | list[Unknown | str]]` may be missing

openlibrary/tests/core/test_cache.py

[error] invalid-argument-type - :15:30 -
Old: Argument to bound method `encode_args` is incorrect: Expected `tuple[Unknown, ...]`, found `list[Unknown | dict[@Todo, @Todo]]`
New: Argument to bound method `encode_args` is incorrect: Expected `tuple[Unknown, ...]`, found `list[Unknown | dict[Unknown | str, Unknown | int]]`

openlibrary/utils/schema.py

[error] call-non-callable - :45:12 -
Old: Object of type `dict[@Todo, @Todo]` is not callable
New: Object of type `dict[Unknown, Unknown]` is not callable

operator (https://github.com/canonical/operator)

ops/lib/__init__.py

[error] invalid-argument-type - :218:34 -
Old: Argument to bound method `__init__` is incorrect: Expected `bool`, found `dict[@Todo, @Todo]`
New: Argument to bound method `__init__` is incorrect: Expected `bool`, found `dict[Unknown, Unknown]`
[error] invalid-argument-type - :240:34 -
Old: Argument to bound method `__init__` is incorrect: Expected `bool`, found `dict[@Todo, @Todo]`
New: Argument to bound method `__init__` is incorrect: Expected `bool`, found `dict[Unknown, Unknown]`

ops/model.py

[warning] unused-ignore-comment - :3666:58 - Unused blanket `type: ignore` directive

optuna (https://github.com/optuna/optuna)

optuna/storages/_callbacks.py

[warning] possibly-missing-attribute - :71:9 - Attribute `append` on type `Any | int | list[Unknown]` may be missing
[error] invalid-argument-type - :73:38 - Argument to function `len` is incorrect: Expected `Sized`, found `Any | int | list[Unknown]`

tests/test_cli.py

[error] invalid-argument-type - :1218:20 -
Old: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[@Todo, @Todo], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[@Todo, @Todo]]]` cannot be called with key of type `Literal["number"]` on object of type `list[Unknown | dict[@Todo, @Todo]]`
New: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str]]]` cannot be called with key of type `Literal["number"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str]]`
[error] invalid-argument-type - :1219:25 -
Old: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[@Todo, @Todo], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[@Todo, @Todo]]]` cannot be called with key of type `Literal["params"]` on object of type `list[Unknown | dict[@Todo, @Todo]]`
New: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str]]]` cannot be called with key of type `Literal["params"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str]]`
[error] invalid-argument-type - :1220:20 -
Old: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[@Todo, @Todo], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[@Todo, @Todo]]]` cannot be called with key of type `Literal["params"]` on object of type `list[Unknown | dict[@Todo, @Todo]]`
New: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str]]]` cannot be called with key of type `Literal["params"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str]]`
[error] invalid-argument-type - :1274:20 -
Old: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[@Todo, @Todo], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[@Todo, @Todo]]]` cannot be called with key of type `Literal["number"]` on object of type `list[Unknown | dict[@Todo, @Todo]]`
New: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str]]]` cannot be called with key of type `Literal["number"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str]]`
[error] invalid-argument-type - :1275:25 -
Old: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[@Todo, @Todo], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[@Todo, @Todo]]]` cannot be called with key of type `Literal["params_x"]` on object of type `list[Unknown | dict[@Todo, @Todo]]`
New: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str]]]` cannot be called with key of type `Literal["params_x"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str]]`
[error] invalid-argument-type - :1276:20 -
Old: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[@Todo, @Todo], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[@Todo, @Todo]]]` cannot be called with key of type `Literal["params_y"]` on object of type `list[Unknown | dict[@Todo, @Todo]]`
New: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str]]]` cannot be called with key of type `Literal["params_y"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str]]`
[error] invalid-argument-type - :1314:20 -
Old: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[@Todo, @Todo], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[@Todo, @Todo]]]` cannot be called with key of type `Literal["number"]` on object of type `list[Unknown | dict[@Todo, @Todo]]`
New: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str]]]` cannot be called with key of type `Literal["number"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str]]`
[error] invalid-argument-type - :1315:20 -
Old: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[@Todo, @Todo], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[@Todo, @Todo]]]` cannot be called with key of type `Literal["params"]` on object of type `list[Unknown | dict[@Todo, @Todo]]`
New: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str]]]` cannot be called with key of type `Literal["params"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str]]`
[error] invalid-argument-type - :1352:20 -
Old: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[@Todo, @Todo], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[@Todo, @Todo]]]` cannot be called with key of type `Literal["number"]` on object of type `list[Unknown | dict[@Todo, @Todo]]`
New: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str]]]` cannot be called with key of type `Literal["number"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str]]`

paasta (https://github.com/yelp/paasta)

paasta_tools/adhoc_tools.py

[error] invalid-argument-type - :111:13 -
Old: Argument to bound method `__init__` is incorrect: Expected `LongRunningServiceConfigDict`, found `dict[@Todo, @Todo]`
New: Argument to bound method `__init__` is incorrect: Expected `LongRunningServiceConfigDict`, found `dict[Unknown, Unknown]`

paasta_tools/cleanup_expired_autoscaling_overrides.py

[error] invalid-assignment - :136:9 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to attribute `data` on type `Unknown | None`
New: Object of type `dict[Unknown, Unknown]` is not assignable to attribute `data` on type `Unknown | None`

paasta_tools/cli/cmds/local_run.py

[error] invalid-assignment - :762:9 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to `AWSSessionCreds`
New: Object of type `dict[Unknown | str, Unknown]` is not assignable to `AWSSessionCreds`
[error] invalid-assignment - :816:5 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to `AWSSessionCreds`
New: Object of type `dict[Unknown | str, Unknown]` is not assignable to `AWSSessionCreds`
[error] invalid-argument-type - :1331:51 -
Old: Argument to bound method `__init__` is incorrect: Expected `SystemPaastaConfigDict`, found `dict[@Todo, @Todo]`
New: Argument to bound method `__init__` is incorrect: Expected `SystemPaastaConfigDict`, found `dict[Unknown | str, Unknown | list[Unknown]]`

paasta_tools/cli/cmds/spark_run.py

[error] invalid-argument-type - :1227:51 -
Old: Argument to bound method `__init__` is incorrect: Expected `SystemPaastaConfigDict`, found `dict[@Todo, @Todo]`
New: Argument to bound method `__init__` is incorrect: Expected `SystemPaastaConfigDict`, found `dict[Unknown | str, Unknown | list[Unknown]]`

paasta_tools/contrib/paasta_update_soa_memcpu.py

[warning] possibly-missing-attribute - :427:9 - Attribute `append` on type `Unknown | dict[Unknown | str, Unknown] | dict[Unknown | str, Unknown | str] | list[Unknown | str]` may be missing

paasta_tools/frameworks/native_service_config.py

[error] invalid-assignment - :176:9 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to `TaskInfo`
New: Object of type `dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str] | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | list[@Todo]] | list[@Todo]] | dict[Unknown | str, Unknown | str | list[Unknown | dict[Unknown | str, Unknown | str | bool]]] | list[Unknown | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown]]]]` is not assignable to `TaskInfo`

paasta_tools/instance/hpa_metrics_parser.py

[error] invalid-assignment - :26:9 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to `HPAMetricsDict`
New: Object of type `dict[Unknown, Unknown]` is not assignable to `HPAMetricsDict`
[error] invalid-assignment - :43:9 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to `HPAMetricsDict`
New: Object of type `dict[Unknown, Unknown]` is not assignable to `HPAMetricsDict`

paasta_tools/instance/kubernetes.py

[warning] possibly-missing-attribute - :352:13 - Attribute `append` on type `Unknown | str | int | list[Unknown]` may be missing
[warning] possibly-missing-attribute - :364:13 - Attribute `append` on type `Unknown | str | int | list[Unknown]` may be missing
[error] invalid-return-type - :830:12 -
Old: Return type does not match returned value: expected `KubernetesVersionDict`, found `dict[@Todo, @Todo]`
New: Return type does not match returned value: expected `KubernetesVersionDict`, found `dict[Unknown | str, Unknown | str | int | tuple[Unknown] | list[Unknown]]`
[error] invalid-return-type - :1114:12 -
Old: Return type does not match returned value: expected `KubernetesVersionDict`, found `dict[@Todo, @Todo]`
New: Return type does not match returned value: expected `KubernetesVersionDict`, found `dict[Unknown | str, Unknown | str | int | list[@Todo]]`

paasta_tools/kubernetes_tools.py

[error] no-matching-overload - :813:9 - No overload of bound method `update` matches arguments
[warning] possibly-missing-attribute - :3177:17 - Attribute `extend` on type `Unknown | list[Unknown] | str` may be missing

paasta_tools/metrics/metastatus_lib.py

[error] invalid-return-type - :637:12 -
Old: Return type does not match returned value: expected `ResourceUtilizationDict`, found `dict[@Todo, @Todo]`
New: Return type does not match returned value: expected `ResourceUtilizationDict`, found `dict[Unknown | str, Unknown | ResourceInfo | int]`
[error] invalid-return-type - :714:12 -
Old: Return type does not match returned value: expected `ResourceUtilizationDict`, found `dict[@Todo, @Todo]`
New: Return type does not match returned value: expected `ResourceUtilizationDict`, found `dict[Unknown | str, Unknown | ResourceInfo | int]`

paasta_tools/metrics/metrics_lib.py

[error] invalid-assignment - :98:9 -
Old: Method `__setitem__` of type `(bound method dict[@Todo, @Todo].__setitem__(key: @Todo, value: @Todo, /) -> None) | (bound method dict[str, @Todo].__setitem__(key: str, value: @Todo, /) -> None)` cannot be called with a key of type `str | None` and a value of type `type[BaseMetrics]` on object of type `dict[@Todo, @Todo] | dict[str, @Todo]`
New: Method `__setitem__` of type `bound method dict[str, @Todo].__setitem__(key: str, value: @Todo, /) -> None` cannot be called with a key of type `str | None` and a value of type `type[BaseMetrics]` on object of type `dict[str, @Todo]`

paasta_tools/paastaapi/api_client.py

[warning] possibly-missing-implicit-call - :713:21 - Method `__setitem__` of type `Unknown | None | dict[Unknown, Unknown] | list[Unknown]` may be missing
[warning] possibly-missing-implicit-call - :717:21 - Method `__setitem__` of type `Unknown | None | dict[Unknown, Unknown] | list[Unknown]` may be missing
[warning] possibly-missing-attribute - :720:21 - Attribute `append` on type `Unknown | None | dict[Unknown, Unknown] | list[Unknown]` may be missing
[warning] possibly-missing-implicit-call - :722:21 - Method `__setitem__` of type `Unknown | None | dict[Unknown, Unknown] | list[Unknown]` may be missing
[warning] possibly-missing-implicit-call - :725:21 - Method `__setitem__` of type `Unknown | None | dict[Unknown, Unknown] | list[Unknown]` may be missing

paasta_tools/secret_providers/vault.py

[error] invalid-argument-type - :202:21 -
Old: Argument to bound method `append` is incorrect: Expected `CryptoKey`, found `dict[@Todo, @Todo]`
New: Argument to bound method `append` is incorrect: Expected `CryptoKey`, found `dict[Unknown | str, Unknown | str]`

paasta_tools/setup_kubernetes_cr.py

[error] invalid-argument-type - :307:9 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["labels"]` on object of type `str`
[warning] possibly-missing-implicit-call - :307:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str] | dict[Unknown, Unknown]` may be missing
[error] invalid-argument-type - :311:9 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["annotations"]` on object of type `str`
[warning] possibly-missing-implicit-call - :311:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str] | dict[Unknown, Unknown]` may be missing
[error] invalid-argument-type - :314:9 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["labels"]` on object of type `str`
[warning] possibly-missing-implicit-call - :314:9 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str] | dict[Unknown, Unknown]` may be missing
[error] invalid-argument-type - :317:5 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["annotations"]` on object of type `str`
[warning] possibly-missing-implicit-call - :317:5 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str] | dict[Unknown, Unknown]` may be missing
[error] invalid-argument-type - :318:5 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["annotations"]` on object of type `str`
[warning] possibly-missing-implicit-call - :318:5 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str] | dict[Unknown, Unknown]` may be missing
[error] invalid-argument-type - :319:5 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["labels"]` on object of type `str`
[warning] possibly-missing-implicit-call - :319:5 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str] | dict[Unknown, Unknown]` may be missing
[error] invalid-argument-type - :320:5 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["labels"]` on object of type `str`
[warning] possibly-missing-implicit-call - :320:5 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str] | dict[Unknown, Unknown]` may be missing
[error] invalid-argument-type - :321:5 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["labels"]` on object of type `str`
[warning] possibly-missing-implicit-call - :321:5 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str] | dict[Unknown, Unknown]` may be missing

paasta_tools/setup_kubernetes_job.py

[error] invalid-assignment - :313:29 - Method `__setitem__` of type `bound method dict[str, HpaOverride].__setitem__(key: str, value: HpaOverride, /) -> None` cannot be called with a key of type `Unknown` and a value of type `dict[Unknown | str, Unknown | (Any & ~AlwaysFalsy)]` on object of type `dict[str, HpaOverride]`

paasta_tools/setup_prometheus_adapter_config.py

[error] invalid-return-type - :342:12 -
Old: Return type does not match returned value: expected `PrometheusAdapterRule`, found `dict[@Todo, @Todo]`
New: Return type does not match returned value: expected `PrometheusAdapterRule`, found `dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str] | str]`
[error] invalid-return-type - :445:12 -
Old: Return type does not match returned value: expected `PrometheusAdapterRule`, found `dict[@Todo, @Todo]`
New: Return type does not match returned value: expected `PrometheusAdapterRule`, found `dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str] | str]`
[error] invalid-return-type - :518:12 -
Old: Return type does not match returned value: expected `PrometheusAdapterRule`, found `dict[@Todo, @Todo]`
New: Return type does not match returned value: expected `PrometheusAdapterRule`, found `dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str] | str]`
[error] invalid-return-type - :614:12 -
Old: Return type does not match returned value: expected `PrometheusAdapterRule`, found `dict[@Todo, @Todo]`
New: Return type does not match returned value: expected `PrometheusAdapterRule`, found `dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str] | str]`
[error] invalid-return-type - :715:12 -
Old: Return type does not match returned value: expected `PrometheusAdapterRule`, found `dict[@Todo, @Todo]`
New: Return type does not match returned value: expected `PrometheusAdapterRule`, found `dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str] | str]`
[error] invalid-return-type - :766:12 -
Old: Return type does not match returned value: expected `PrometheusAdapterRule`, found `dict[@Todo, @Todo]`
New: Return type does not match returned value: expected `PrometheusAdapterRule`, found `dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str] | str]`
[error] invalid-return-type - :864:12 -
Old: Return type does not match returned value: expected `PrometheusAdapterConfig`, found `dict[@Todo, @Todo]`
New: Return type does not match returned value: expected `PrometheusAdapterConfig`, found `dict[Unknown | str, Unknown | list[PrometheusAdapterRule]]`

paasta_tools/tron/client.py

[error] invalid-argument-type - :45:37 - Argument to function `get` is incorrect: Expected `Mapping[str, str | bytes | None] | None`, found `Unknown | str | dict[Unknown | str, Unknown | str]`
[error] invalid-argument-type - :45:37 - Argument to function `get` is incorrect: Expected `bool | None`, found `Unknown | str | dict[Unknown | str, Unknown | str]`
[error] invalid-argument-type - :45:37 - Argument to function `get` is incorrect: Expected `bool`, found `Unknown | str | dict[Unknown | str, Unknown | str]`
[error] invalid-argument-type - :45:37 - Argument to function `get` is incorrect: Expected `str | bytes`, found `Unknown | str | dict[Unknown | str, Unknown | str]`
[warning] possibly-missing-implicit-call - :50:17 - Method `__setitem__` of type `Unknown | str | dict[Unknown | str, Unknown | str]` may be missing
[error] invalid-argument-type - :51:38 - Argument to function `post` is incorrect: Expected `Mapping[str, str | bytes | None] | None`, found `Unknown | str | dict[Unknown | str, Unknown | str]`
[error] invalid-argument-type - :51:38 - Argument to function `post` is incorrect: Expected `bool | None`, found `Unknown | str | dict[Unknown | str, Unknown | str]`
[error] invalid-argument-type - :51:38 - Argument to function `post` is incorrect: Expected `bool`, found `Unknown | str | dict[Unknown | str, Unknown | str]`
[error] invalid-argument-type - :51:38 - Argument to function `post` is incorrect: Expected `str | bytes`, found `Unknown | str | dict[Unknown | str, Unknown | str]`

paasta_tools/tron_tools.py

[error] invalid-return-type - :547:16 - Return type does not match returned value: expected `dict[str, FieldSelectorConfig]`, found `dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str]]`
[error] invalid-argument-type - :1096:17 - Argument to function `build_spark_command` is incorrect: Expected `str`, found `Unknown | list[TronSecretVolume] | bool | str | None`

paasta_tools/utils.py

[error] invalid-assignment - :594:9 -
Old: Object of type `list[Unknown | dict[@Todo, @Todo]]` is not assignable to `list[DockerParameter]`
New: Object of type `list[Unknown | dict[Unknown | str, Unknown | str]]` is not assignable to `list[DockerParameter]`
[error] invalid-argument-type - :601:17 -
Old: Argument to bound method `append` is incorrect: Expected `DockerParameter`, found `dict[@Todo, @Todo]`
New: Argument to bound method `append` is incorrect: Expected `DockerParameter`, found `dict[Unknown | str, Unknown | str]`
[error] invalid-argument-type - :2112:35 -
Old: Argument to bound method `__init__` is incorrect: Expected `SystemPaastaConfigDict`, found `dict[@Todo, @Todo]`
New: Argument to bound method `__init__` is incorrect: Expected `SystemPaastaConfigDict`, found `dict[Unknown, Unknown]`
[error] invalid-assignment - :2120:5 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to `SystemPaastaConfigDict`
New: Object of type `dict[Unknown, Unknown]` is not assignable to `SystemPaastaConfigDict`
[error] invalid-assignment - :3581:9 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to `BranchDictV2`
New: Object of type `dict[Unknown | str, Unknown]` is not assignable to `BranchDictV2`

pandas (https://github.com/pandas-dev/pandas)

pandas/tests/frame/methods/test_replace.py

[error] invalid-return-type - :22:12 - Return type does not match returned value: expected `dict[str, list[int | str]]`, found `dict[Unknown | str, Unknown | list[int] | list[Unknown]]`
[error] invalid-return-type - :27:12 - Return type does not match returned value: expected `dict[str, list[int | float | str]]`, found `dict[Unknown | str, Unknown | list[int] | list[Unknown] | list[Unknown | str | int | float]]`

pandas/tests/io/formats/test_to_string.py

[error] invalid-argument-type - :179:26 - Argument to bound method `to_string` is incorrect: Expected `int | list[int] | dict[Hashable, int] | None`, found `dict[Unknown | str, Unknown | str | int]`

pandas/tests/test_aggregation.py

[error] too-many-positional-arguments - :39:28 - Too many positional arguments: expected 1, got 2
[error] too-many-positional-arguments - :40:28 - Too many positional arguments: expected 1, got 3
[error] too-many-positional-arguments - :41:28 - Too many positional arguments: expected 1, got 2
[error] unknown-argument - :41:31 - Argument `b` does not match any known parameter

pandas/core/arrays/datetimes.py

[error] invalid-argument-type - :2917:29 - Argument to bound method `tz_localize` is incorrect: Expected `bool | Literal["raise", "NaT"]`, found `Unknown | (Unknown & ~str) | bool | None`

pandas/core/generic.py

[error] invalid-assignment - :5411:9 - Object of type `dict[Unknown | str, Unknown | None | (Unknown & ~None)]` is not assignable to `dict[Literal["index", "columns"], Any]`

pandas/core/reshape/pivot.py

[warning] unused-ignore-comment - :1119:20 - Unused blanket `type: ignore` directive

pandas/tests/apply/test_frame_apply.py

[error] invalid-argument-type - :421:20 - Argument to bound method `__init__` is incorrect: Expected `bool | None`, found `Unknown | list[Unknown | str]`

pandas/tests/frame/methods/test_round.py

[error] invalid-argument-type - :67:22 - Argument to bound method `round` is incorrect: Expected `int | dict[@Todo, int] | Series`, found `dict[Unknown | str, Unknown | int | float]`
[error] invalid-argument-type - :72:22 - Argument to bound method `round` is incorrect: Expected `int | dict[@Todo, int] | Series`, found `dict[Unknown | str, Unknown | int | str]`
[error] invalid-argument-type - :81:22 - Argument to bound method `round` is incorrect: Expected `int | dict[@Todo, int] | Series`, found `dict[Unknown | str, Unknown | int | list[Unknown | int]]`

pandas/tests/frame/methods/test_to_records.py

[error] invalid-argument-type - :500:32 - Argument to bound method `to_records` is incorrect: Expected `bool`, found `Unknown | DictLike | str`

pandas/tests/frame/test_arithmetic.py

[warning] possibly-missing-implicit-call - :590:13 -
Old: Method `__setitem__` of type `None | dict[@Todo, @Todo]` may be missing
New: Method `__setitem__` of type `None | dict[Unknown | str, Unknown | str | None] | dict[Unknown | str, Unknown | None]` may be missing

pandas/tests/frame/test_logical_ops.py

[warning] possibly-missing-attribute - :121:51 -
Old: Attribute `index` on type `dict[@Todo, @Todo] | DataFrame` may be missing
New: Attribute `index` on type `dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | bool]] | DataFrame` may be missing
[warning] possibly-missing-attribute - :121:70 -
Old: Attribute `columns` on type `dict[@Todo, @Todo] | DataFrame` may be missing
New: Attribute `columns` on type `dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | bool]] | DataFrame` may be missing
[warning] possibly-missing-attribute - :128:56 -
Old: Attribute `index` on type `dict[@Todo, @Todo] | DataFrame` may be missing
New: Attribute `index` on type `dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | bool]] | DataFrame` may be missing
[warning] possibly-missing-attribute - :128:75 -
Old: Attribute `columns` on type `dict[@Todo, @Todo] | DataFrame` may be missing
New: Attribute `columns` on type `dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | bool]] | DataFrame` may be missing

pandas/tests/groupby/methods/test_value_counts.py

[error] invalid-argument-type - :1225:44 - Argument to function `__new__` is incorrect: Expected `bool`, found `Unknown | list[Unknown | list[Unknown | int] | list[Unknown | int | float]] | list[Unknown | str]`
[error] invalid-argument-type - :1225:44 - Argument to function `__new__` is incorrect: Expected `bool`, found `Unknown | list[Unknown | list[Unknown | int] | list[Unknown | int | float]] | list[Unknown | str]`
[error] invalid-argument-type - :1228:52 - Argument to function `__new__` is incorrect: Expected `bool`, found `Unknown | list[Unknown | list[Unknown | int] | list[Unknown | int | float]] | list[Unknown | str]`
[error] invalid-argument-type - :1228:52 - Argument to function `__new__` is incorrect: Expected `bool`, found `Unknown | list[Unknown | list[Unknown | int] | list[Unknown | int | float]] | list[Unknown | str]`
[error] invalid-argument-type - :1231:52 - Argument to function `__new__` is incorrect: Expected `bool`, found `Unknown | list[Unknown | list[Unknown | int] | list[Unknown | int | float]] | list[Unknown | str]`
[error] invalid-argument-type - :1231:52 - Argument to function `__new__` is incorrect: Expected `bool`, found `Unknown | list[Unknown | list[Unknown | int] | list[Unknown | int | float]] | list[Unknown | str]`

pandas/tests/indexing/test_iloc.py

[error] unsupported-operator - :823:23 -
Old: Operator `in` is not supported for types `str` and `None`, in comparing `Literal["0b"]` with `@Todo | None`
New: Operator `in` is not supported for types `str` and `None`, in comparing `Literal["0b"]` with `Unknown | str | None`
[error] unsupported-operator - :830:28 -
Old: Operator `in` is not supported for types `None` and `str`, in comparing `@Todo | None` with `str`
New: Operator `in` is not supported for types `None` and `str`, in comparing `Unknown | str | None` with `str`

pandas/tests/indexing/test_loc.py

[error] invalid-argument-type - :1747:53 - Argument to bound method `__init__` is incorrect: Expected `bool | None`, found `Unknown | list[Unknown | list[Unknown | str] | list[Unknown | int]]`

pandas/tests/interchange/test_impl.py

[error] invalid-argument-type - :340:29 - Argument to function `__new__` is incorrect: Expected `tzinfo | None`, found `Unknown | int`

pandas/tests/io/formats/style/test_style.py

[error] invalid-argument-type - :987:30 - Argument to bound method `__init__` is incorrect: Expected `bool | None`, found `Unknown | list[Unknown | str]`
[error] invalid-assignment - :781:9 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to attribute `ctx` of type `defaultdict[tuple[int, int], @Todo]`
New: Object of type `dict[Unknown | tuple[int, int], Unknown | list[Unknown | tuple[str, str]]]` is not assignable to attribute `ctx` of type `defaultdict[tuple[int, int], @Todo]`
[error] invalid-assignment - :793:9 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to attribute `ctx` of type `defaultdict[tuple[int, int], @Todo]`
New: Object of type `dict[Unknown | tuple[int, int], Unknown | list[Unknown | tuple[str, str]]]` is not assignable to attribute `ctx` of type `defaultdict[tuple[int, int], @Todo]`

pandas/tests/io/json/test_json_table_schema.py

[warning] possibly-missing-implicit-call - :132:9 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | str] | str` may be missing

pandas/tests/io/test_orc.py

[error] invalid-argument-type - :79:31 -
Old: Argument to function `read_orc` is incorrect: Expected `list[str] | None`, found `dict_keys[@Todo, @Todo]`
New: Argument to function `read_orc` is incorrect: Expected `list[str] | None`, found `dict_keys[Unknown | str, Unknown]`

pandas/tests/io/test_parquet.py

[error] invalid-argument-type - :308:53 -
Old: Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | None`
New: Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | None`
[error] invalid-argument-type - :313:57 -
Old: Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | None`
New: Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | str | None`

pandas/tests/plotting/test_boxplot_method.py

[error] invalid-argument-type - :325:49 - Argument to bound method `boxplot_frame` is incorrect: Expected `bool`, found `Unknown | dict[Unknown | str, Unknown | str]`
[error] invalid-argument-type - :325:49 - Argument to bound method `boxplot_frame` is incorrect: Expected `int | None`, found `Unknown | dict[Unknown | str, Unknown | str]`
[error] invalid-argument-type - :325:49 - Argument to bound method `boxplot_frame` is incorrect: Expected `int`, found `Unknown | dict[Unknown | str, Unknown | str]`
[error] invalid-argument-type - :325:49 - Argument to bound method `boxplot_frame` is incorrect: Expected `tuple[int | float, int | float] | None`, found `Unknown | dict[Unknown | str, Unknown | str]`

pandas/tests/scalar/timestamp/test_constructors.py

[error] invalid-argument-type - :294:56 - Argument to function `__new__` is incorrect: Expected `tzinfo | None`, found `Unknown | int`
[error] invalid-argument-type - :327:24 - Argument to function `__new__` is incorrect: Expected `str | None`, found `Unknown | int`

pandas/tests/tseries/offsets/test_offsets.py

[error] invalid-argument-type - :642:29 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int`
[error] invalid-argument-type - :671:27 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int`
[error] invalid-argument-type - :672:32 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int`
[error] invalid-argument-type - :692:32 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int`
[error] invalid-argument-type - :694:24 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int`
[error] invalid-argument-type - :715:27 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int`
[error] invalid-argument-type - :716:31 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int`
[error] invalid-argument-type - :717:32 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int`
[error] invalid-argument-type - :718:36 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int`
[error] invalid-argument-type - :739:32 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int`
[error] invalid-argument-type - :740:36 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int`
[error] invalid-argument-type - :977:16 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int`
[error] invalid-argument-type - :1083:25 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int`

pandas-stubs (https://github.com/pandas-dev/pandas-stubs)

tests/test_groupby.py

[error] type-assertion-failure - :1141:11 - Argument does not have asserted type `DataFrame`

pandera (https://github.com/pandera-dev/pandera)

pandera/engines/pandas_engine.py

[error] no-matching-overload - :1344:17 - No overload of function `check_type` matches arguments

tests/pandas/test_dtypes.py

[error] invalid-assignment - :170:1 -
Old: Object of type `list[Unknown | tuple[dict[@Todo, @Todo], list[Unknown | int]] | tuple[dict[@Todo, @Todo], list[Unknown | int | None]] | tuple[dict[@Todo, @Todo], list[Unknown | float]] | tuple[dict[@Todo, @Todo], list[Unknown | complex]] | tuple[dict[@Todo, @Todo], list[Unknown | bool]] | tuple[dict[@Todo, @Todo], list[Unknown | bool | None]] | tuple[dict[@Todo, @Todo], list[Unknown | str]] | tuple[dict[@Todo, @Todo], Unknown] | tuple[dict[@Todo, @Todo], Series[Any]]]` is not assignable to `list[tuple[dict[Unknown, Unknown], list[Unknown]]]`
New: Object of type `list[Unknown | tuple[dict[Unknown | <class 'int'> | <class 'Int'> | <class 'Int8'> | <class 'Int16'> | <class 'Int32'> | <class 'Int64'> | <class 'signedinteger[_8Bit]'> | <class 'signedinteger[_16Bit]'> | <class 'signedinteger[_32Bit]'> | <class 'signedinteger[_64Bit]'>, Unknown | str], list[Unknown | int]] | tuple[dict[Unknown | <class 'INT8'> | <class 'INT16'> | <class 'INT32'> | <class 'INT64'>, Unknown | str], list[Unknown | int | None]] | tuple[dict[Unknown | <class 'UInt'> | <class 'UInt8'> | <class 'UInt16'> | <class 'UInt32'> | <class 'UInt64'>, Unknown | str], list[Unknown | int]] | tuple[dict[Unknown | <class 'UINT8'> | <class 'UINT16'> | <class 'UINT32'> | <class 'UINT64'>, Unknown | str], list[Unknown | int | None]] | tuple[dict[Unknown | <class 'float'> | <class 'Float'> | <class 'Float16'> | <class 'Float32'> | <class 'Float64'> | <class 'float64'>, Unknown | str], list[Unknown | float]] | tuple[dict[Unknown | <class 'complex'> | <class 'Complex'> | <class 'Complex64'> | <class 'Complex128'>, Unknown | str], list[Unknown | complex]] | tuple[dict[Unknown | <class 'bool'> | <class 'Bool'> | <class 'bool'>, Unknown | str], list[Unknown | bool]] | tuple[dict[Unknown | <class 'BooleanDtype'> | <class 'BOOL'>, Unknown | str], list[Unknown | bool | None]] | tuple[dict[Unknown | <class 'str'> | <class 'String'> | <class 'str_'>, Unknown | str], list[Unknown | str]] | tuple[dict[Unknown | <class 'object'> | <class 'object_'>, Unknown | str], list[Unknown | str]] | tuple[dict[Unknown | <class 'StringDtype'>, Unknown | str], list[Unknown | int | None]] | tuple[dict[Unknown | <class 'Category'> | Category | CategoricalDtype, Unknown | str | CategoricalDtype], list[Unknown | int | None]] | tuple[dict[Unknown | <class 'datetime'> | <class 'datetime64'> | <class 'Timestamp'> | DatetimeTZDtype | <class 'DateTime'> | DateTime, Unknown | str], Unknown] | tuple[dict[Unknown | PeriodDtype, Unknown | str], Unknown] | tuple[dict[Unknown | <class 'SparseDtype'> | SparseDtype, Unknown | SparseDtype], Series[Any]] | tuple[dict[Unknown | IntervalDtype, Unknown | str], Series[Any]]]` is not assignable to `list[tuple[dict[Unknown, Unknown], list[Unknown]]]`

tests/pandas/test_model.py

[error] invalid-argument-type - :1687:59 -
Old: Argument to function `from_records` is incorrect: Expected `ndarray[Unknown, Unknown] | list[tuple[Any, ...]] | dict[Any, Any] | DataFrame`, found `list[Unknown | dict[@Todo, @Todo]]`
New: Argument to function `from_records` is incorrect: Expected `ndarray[Unknown, Unknown] | list[tuple[Any, ...]] | dict[Any, Any] | DataFrame`, found `list[Unknown | dict[Unknown | str, Unknown | str | float]]`
[error] invalid-argument-type - :1731:59 -
Old: Argument to function `from_records` is incorrect: Expected `ndarray[Unknown, Unknown] | list[tuple[Any, ...]] | dict[Any, Any] | DataFrame`, found `list[Unknown | dict[@Todo, @Todo]]`
New: Argument to function `from_records` is incorrect: Expected `ndarray[Unknown, Unknown] | list[tuple[Any, ...]] | dict[Any, Any] | DataFrame`, found `list[Unknown | dict[Unknown | str, Unknown | str | float]]`
[error] invalid-argument-type - :1758:59 -
Old: Argument to function `from_records` is incorrect: Expected `ndarray[Unknown, Unknown] | list[tuple[Any, ...]] | dict[Any, Any] | DataFrame`, found `list[Unknown | dict[@Todo, @Todo]]`
New: Argument to function `from_records` is incorrect: Expected `ndarray[Unknown, Unknown] | list[tuple[Any, ...]] | dict[Any, Any] | DataFrame`, found `list[Unknown | dict[Unknown | str, Unknown | str | float]]`

tests/pandas/test_model_components.py

[warning] unused-ignore-comment - :15:72 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :28:73 - Unused blanket `type: ignore` directive

tests/pandas/test_schemas.py

[warning] unused-ignore-comment - :1126:46 - Unused blanket `type: ignore` directive

tests/polars/test_polars_pydantic.py

[error] invalid-argument-type - :181:42 -
Old: Argument is incorrect: Expected `DataFrame[SimplePolarsSchema]`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `DataFrame[SimplePolarsSchema]`, found `dict[Unknown | str, Unknown | list[Unknown | str]]`

pip (https://github.com/pypa/pip)

src/pip/_internal/cli/cmdoptions.py

[error] invalid-assignment - :979:9 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to attribute `hashes` on type `Values | None`
New: Object of type `dict[Unknown, Unknown]` is not assignable to attribute `hashes` on type `Values | None`

src/pip/_internal/network/session.py

[error] invalid-argument-type - :121:8 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["name"]` on object of type `str`
[warning] possibly-missing-implicit-call - :122:9 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | str] | str` may be missing
[error] invalid-argument-type - :123:10 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["name"]` on object of type `str`
[warning] possibly-missing-implicit-call - :127:9 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | str] | str` may be missing
[error] invalid-argument-type - :130:10 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["name"]` on object of type `str`
[warning] possibly-missing-implicit-call - :132:9 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | str] | str` may be missing
[error] invalid-argument-type - :133:10 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["name"]` on object of type `str`
[warning] possibly-missing-implicit-call - :135:9 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | str] | str` may be missing
[warning] possibly-missing-implicit-call - :162:9 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | str] | str` may be missing
[warning] possibly-missing-implicit-call - :165:9 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | str] | str` may be missing

src/pip/_internal/operations/prepare.py

[warning] possibly-missing-attribute - :487:30 - Attribute `url` on type `Unknown | Link | None` may be missing

src/pip/_vendor/msgpack/fallback.py

[error] invalid-assignment - :426:13 - Not enough values to unpack: Expected 3
[error] invalid-assignment - :437:13 - Not enough values to unpack: Expected 3
[error] invalid-assignment - :445:13 - Too many values to unpack: Expected 2
[error] invalid-assignment - :453:13 - Not enough values to unpack: Expected 3
[error] invalid-assignment - :460:13 - Not enough values to unpack: Expected 3
[error] invalid-assignment - :471:13 - Not enough values to unpack: Expected 3
[error] invalid-assignment - :478:13 - Not enough values to unpack: Expected 3

src/pip/_vendor/requests/cookies.py

[warning] possibly-missing-attribute - :486:36 - Attribute `startswith` on type `Unknown | int | None | str | dict[Unknown | str, Unknown | None]` may be missing
[error] invalid-argument-type - :489:29 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int | None | str | dict[Unknown | str, Unknown | None]`
[error] invalid-argument-type - :489:29 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int | None | str | dict[Unknown | str, Unknown | None]`
[error] invalid-argument-type - :489:29 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int | None | str | dict[Unknown | str, Unknown | None]`
[error] invalid-argument-type - :489:29 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int | None | str | dict[Unknown | str, Unknown | None]`
[error] invalid-argument-type - :489:29 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int | None | str | dict[Unknown | str, Unknown | None]`
[error] invalid-argument-type - :489:29 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int | None | str | dict[Unknown | str, Unknown | None]`
[error] invalid-argument-type - :489:29 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int | None | str | dict[Unknown | str, Unknown | None]`
[error] invalid-argument-type - :489:29 - Argument to bound method `__init__` is incorrect: Expected `dict[str, str]`, found `Unknown | int | None | str | dict[Unknown | str, Unknown | None]`
[error] invalid-argument-type - :489:29 - Argument to bound method `__init__` is incorrect: Expected `int | None`, found `Unknown | int | None | str | dict[Unknown | str, Unknown | None]`
[error] invalid-argument-type - :489:29 - Argument to bound method `__init__` is incorrect: Expected `int | None`, found `Unknown | int | None | str | dict[Unknown | str, Unknown | None]`
[error] invalid-argument-type - :489:29 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | int | None | str | dict[Unknown | str, Unknown | None]`
[error] invalid-argument-type - :489:29 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | int | None | str | dict[Unknown | str, Unknown | None]`
[error] invalid-argument-type - :489:29 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | int | None | str | dict[Unknown | str, Unknown | None]`
[error] invalid-argument-type - :489:29 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | int | None | str | dict[Unknown | str, Unknown | None]`
[error] invalid-argument-type - :489:29 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | int | None | str | dict[Unknown | str, Unknown | None]`
[error] invalid-argument-type - :489:29 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | int | None | str | dict[Unknown | str, Unknown | None]`
[error] invalid-argument-type - :489:29 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | int | None | str | dict[Unknown | str, Unknown | None]`

src/pip/_vendor/rich/pretty.py

[warning] unused-ignore-comment - :1006:31 - Unused blanket `type: ignore` directive

src/pip/_vendor/urllib3/util/ssl_.py

[error] invalid-argument-type - :182:62 - Argument to function `wrap_socket` is incorrect: Expected `str | None`, found `Unknown | bool`

poetry (https://github.com/python-poetry/poetry)

tests/fixtures/directory/project_with_transitive_directory_dependencies/setup.py

[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `Mapping[str, @Todo]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `Mapping[str, Mapping[str, tuple[@Todo, @Todo]]]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `Mapping[str, list[str]]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `Mapping[str, str]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `Mapping[str, type[Command]]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `bool | Literal[0, 1]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `list[Extension]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `list[str] | str`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `list[str] | str`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `list[str]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `list[str]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `list[str]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `list[str]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `list[str]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `list[str]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `list[str]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `list[str]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `list[str]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `list[str]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `list[str]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `list[str]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `list[tuple[str, list[str]]]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `str`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `str`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `str`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `str`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `str`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `str`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `str`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `str`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `str`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `str`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `str`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `str`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `str`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `str`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `str`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`
[error] invalid-argument-type - :26:7 - Argument to function `setup` is incorrect: Expected `type[Distribution]`, found `Unknown | str | None | list[Unknown | str] | dict[Unknown | str, Unknown | list[Unknown | str]]`

tests/installation/test_installer.py

[error] invalid-argument-type - :373:13 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | str | bool | list[Unknown]], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | str | bool | list[Unknown]]]]` cannot be called with key of type `Literal["files"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | str | bool | list[Unknown]]]`
[warning] possibly-missing-implicit-call - :3042:9 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | str | bool | list[Unknown]] | dict[Unknown | str, Unknown | str | bool | list[Unknown] | dict[Unknown | str, Unknown | str]] | str` may be missing
[warning] possibly-missing-implicit-call - :3043:9 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | str | bool | list[Unknown]] | dict[Unknown | str, Unknown | str | bool | list[Unknown] | dict[Unknown | str, Unknown | str]] | str` may be missing
[warning] possibly-missing-implicit-call - :3044:9 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | str | bool | list[Unknown]] | dict[Unknown | str, Unknown | str | bool | list[Unknown] | dict[Unknown | str, Unknown | str]] | str` may be missing
[warning] possibly-missing-implicit-call - :3045:9 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | str | bool | list[Unknown]] | dict[Unknown | str, Unknown | str | bool | list[Unknown] | dict[Unknown | str, Unknown | str]] | str` may be missing
[warning] possibly-missing-implicit-call - :3149:9 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | str | bool | list[Unknown]] | dict[Unknown | str, Unknown | str | bool | list[Unknown] | dict[Unknown | str, Unknown | str]] | str` may be missing
[warning] possibly-missing-implicit-call - :3150:9 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | str | bool | list[Unknown]] | dict[Unknown | str, Unknown | str | bool | list[Unknown] | dict[Unknown | str, Unknown | str]] | str` may be missing
[warning] possibly-missing-implicit-call - :3151:9 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | str | bool | list[Unknown]] | dict[Unknown | str, Unknown | str | bool | list[Unknown] | dict[Unknown | str, Unknown | str]] | str` may be missing
[warning] possibly-missing-implicit-call - :3152:9 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | str | bool | list[Unknown]] | dict[Unknown | str, Unknown | str | bool | list[Unknown] | dict[Unknown | str, Unknown | str]] | str` may be missing
[warning] possibly-missing-implicit-call - :3281:9 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | str | bool | list[Unknown] | dict[Unknown | str, Unknown | str]] | dict[Unknown | str, Unknown | str | bool | list[Unknown]] | str` may be missing
[warning] possibly-missing-implicit-call - :3282:9 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | str | bool | list[Unknown] | dict[Unknown | str, Unknown | str]] | dict[Unknown | str, Unknown | str | bool | list[Unknown]] | str` may be missing
[warning] possibly-missing-implicit-call - :3283:9 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | str | bool | list[Unknown] | dict[Unknown | str, Unknown | str]] | dict[Unknown | str, Unknown | str | bool | list[Unknown]] | str` may be missing

porcupine (https://github.com/Akuli/porcupine)

porcupine/plugins/restart.py

[warning] possibly-missing-attribute - :64:15 - Attribute `from_state` on type `@Todo | bool` may be missing

prefect (https://github.com/PrefectHQ/prefect)

src/prefect/_experimental/lineage.py

[error] invalid-argument-type - :115:20 - Argument to function `emit_event` is incorrect: Expected `Event | None`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :115:20 - Argument to function `emit_event` is incorrect: Expected `UUID | None`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :115:20 - Argument to function `emit_event` is incorrect: Expected `datetime | None`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :115:20 - Argument to function `emit_event` is incorrect: Expected `dict[str, Any] | None`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :115:20 - Argument to function `emit_event` is incorrect: Expected `dict[str, Any] | None`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :115:20 - Argument to function `emit_event` is incorrect: Expected `dict[str, str]`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :115:20 - Argument to function `emit_event` is incorrect: Expected `list[dict[str, str]] | list[RelatedResource] | None`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :115:20 - Argument to function `emit_event` is incorrect: Expected `str`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :243:24 - Argument to function `emit_event` is incorrect: Expected `Event | None`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :243:24 - Argument to function `emit_event` is incorrect: Expected `UUID | None`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :243:24 - Argument to function `emit_event` is incorrect: Expected `datetime | None`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :243:24 - Argument to function `emit_event` is incorrect: Expected `dict[str, Any] | None`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :243:24 - Argument to function `emit_event` is incorrect: Expected `dict[str, Any] | None`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :243:24 - Argument to function `emit_event` is incorrect: Expected `dict[str, str]`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :243:24 - Argument to function `emit_event` is incorrect: Expected `list[dict[str, str]] | list[RelatedResource] | None`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :243:24 - Argument to function `emit_event` is incorrect: Expected `str`, found `Any | str | list[Unknown]`
[error] invalid-argument-type - :252:20 - Argument to function `emit_event` is incorrect: Expected `Event | None`, found `Any | str | list[@Todo]`
[error] invalid-argument-type - :252:20 - Argument to function `emit_event` is incorrect: Expected `UUID | None`, found `Any | str | list[@Todo]`
[error] invalid-argument-type - :252:20 - Argument to function `emit_event` is incorrect: Expected `datetime | None`, found `Any | str | list[@Todo]`
[error] invalid-argument-type - :252:20 - Argument to function `emit_event` is incorrect: Expected `dict[str, Any] | None`, found `Any | str | list[@Todo]`
[error] invalid-argument-type - :252:20 - Argument to function `emit_event` is incorrect: Expected `dict[str, Any] | None`, found `Any | str | list[@Todo]`
[error] invalid-argument-type - :252:20 - Argument to function `emit_event` is incorrect: Expected `dict[str, str]`, found `Any | str | list[@Todo]`
[error] invalid-argument-type - :252:20 - Argument to function `emit_event` is incorrect: Expected `list[dict[str, str]] | list[RelatedResource] | None`, found `Any | str | list[@Todo]`
[error] invalid-argument-type - :252:20 - Argument to function `emit_event` is incorrect: Expected `str`, found `Any | str | list[@Todo]`
[error] invalid-argument-type - :261:24 - Argument to function `emit_event` is incorrect: Expected `Event | None`, found `Unknown | str | list[Unknown]`
[error] invalid-argument-type - :261:24 - Argument to function `emit_event` is incorrect: Expected `UUID | None`, found `Unknown | str | list[Unknown]`
[error] invalid-argument-type - :261:24 - Argument to function `emit_event` is incorrect: Expected `datetime | None`, found `Unknown | str | list[Unknown]`
[error] invalid-argument-type - :261:24 - Argument to function `emit_event` is incorrect: Expected `dict[str, Any] | None`, found `Unknown | str | list[Unknown]`
[error] invalid-argument-type - :261:24 - Argument to function `emit_event` is incorrect: Expected `dict[str, Any] | None`, found `Unknown | str | list[Unknown]`
[error] invalid-argument-type - :261:24 - Argument to function `emit_event` is incorrect: Expected `dict[str, str]`, found `Unknown | str | list[Unknown]`
[error] invalid-argument-type - :261:24 - Argument to function `emit_event` is incorrect: Expected `list[dict[str, str]] | list[RelatedResource] | None`, found `Unknown | str | list[Unknown]`
[error] invalid-argument-type - :261:24 - Argument to function `emit_event` is incorrect: Expected `str`, found `Unknown | str | list[Unknown]`

src/prefect/events/utilities.py

[error] invalid-argument-type - :96:27 - Argument is incorrect: Expected `Resource`, found `Any | str | dict[str, str] | dict[str, Any] | None`
[error] invalid-argument-type - :96:27 - Argument is incorrect: Expected `UUID | None`, found `Any | str | dict[str, str] | dict[str, Any] | None`
[error] invalid-argument-type - :96:27 - Argument is incorrect: Expected `UUID`, found `Any | str | dict[str, str] | dict[str, Any] | None`
[error] invalid-argument-type - :96:27 - Argument is incorrect: Expected `dict[str, Any]`, found `Any | str | dict[str, str] | dict[str, Any] | None`
[error] invalid-argument-type - :96:27 - Argument is incorrect: Expected `list[RelatedResource]`, found `Any | str | dict[str, str] | dict[str, Any] | None`
[error] invalid-argument-type - :96:27 - Argument is incorrect: Expected `set[str]`, found `Any | str | dict[str, str] | dict[str, Any] | None`
[error] invalid-argument-type - :96:27 - Argument is incorrect: Expected `str`, found `Any | str | dict[str, str] | dict[str, Any] | None`

src/integrations/prefect-aws/prefect_aws/observers/ecs.py

[error] invalid-assignment - :44:1 - Object of type `dict[Unknown | str, Unknown | str]` is not assignable to `dict[str, Literal["task", "container-instance", "deployment"]]`

src/integrations/prefect-aws/prefect_aws/workers/ecs_worker.py

[error] invalid-argument-type - :1446:16 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["name"]` on object of type `str`
[error] invalid-argument-type - :1446:46 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["value"]` on object of type `str`
[warning] possibly-missing-attribute - :1447:17 - Attribute `remove` on type `Any | (str & ~AlwaysFalsy)` may be missing
[error] invalid-argument-type - :1518:20 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["name"]` on object of type `str`
[error] invalid-argument-type - :1530:20 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["name"]` on object of type `str`
[warning] unused-ignore-comment - :1519:60 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :1531:60 - Unused blanket `type: ignore` directive

src/integrations/prefect-azure/tests/conftest.py

[warning] possibly-missing-attribute - :77:44 - Attribute `startswith` on type `Unknown | str | None` may be missing

src/integrations/prefect-docker/prefect_docker/images.py

[error] invalid-assignment - :64:5 - Object of type `dict[Unknown | str, Unknown | str | None | bool | dict[str, Any]]` is not assignable to `dict[str, dict[str, Any]]`

src/integrations/prefect-email/prefect_email/message.py

[error] invalid-assignment - :100:9 - Method `__setitem__` of type `bound method MIMEMultipart.__setitem__(name: str, val: str) -> None` cannot be called with a key of type `Unknown | str` and a value of type `(Unknown & ~Top[list[Unknown]]) | str | None` on object of type `MIMEMultipart`

src/integrations/prefect-ray/prefect_ray/task_runners.py

[error] invalid-argument-type - :379:47 - Argument to function `run_task_async` is incorrect: Expected `Literal["state", "result"]`, found `Any | UUID | Iterable[PrefectFuture[Any]] | None`
[error] invalid-argument-type - :379:47 - Argument to function `run_task_async` is incorrect: Expected `TaskRun | None`, found `Any | UUID | Iterable[PrefectFuture[Any]] | None`
[error] invalid-argument-type - :379:47 - Argument to function `run_task_async` is incorrect: Expected `UUID | None`, found `Any | UUID | Iterable[PrefectFuture[Any]] | None`
[error] invalid-argument-type - :379:47 - Argument to function `run_task_async` is incorrect: Expected `dict[str, Any] | None`, found `Any | UUID | Iterable[PrefectFuture[Any]] | None`
[error] invalid-argument-type - :379:47 - Argument to function `run_task_async` is incorrect: Expected `dict[str, Any] | None`, found `Any | UUID | Iterable[PrefectFuture[Any]] | None`
[error] invalid-argument-type - :379:47 - Argument to function `run_task_async` is incorrect: Expected `dict[str, set[RunInput]] | None`, found `Any | UUID | Iterable[PrefectFuture[Any]] | None`
[error] invalid-argument-type - :381:34 - Argument to function `run_task_sync` is incorrect: Expected `Literal["state", "result"]`, found `Any | UUID | Iterable[PrefectFuture[Any]] | None`
[error] invalid-argument-type - :381:34 - Argument to function `run_task_sync` is incorrect: Expected `TaskRun | None`, found `Any | UUID | Iterable[PrefectFuture[Any]] | None`
[error] invalid-argument-type - :381:34 - Argument to function `run_task_sync` is incorrect: Expected `UUID | None`, found `Any | UUID | Iterable[PrefectFuture[Any]] | None`
[error] invalid-argument-type - :381:34 - Argument to function `run_task_sync` is incorrect: Expected `dict[str, Any] | None`, found `Any | UUID | Iterable[PrefectFuture[Any]] | None`
[error] invalid-argument-type - :381:34 - Argument to function `run_task_sync` is incorrect: Expected `dict[str, Any] | None`, found `Any | UUID | Iterable[PrefectFuture[Any]] | None`
[error] invalid-argument-type - :381:34 - Argument to function `run_task_sync` is incorrect: Expected `dict[str, set[RunInput]] | None`, found `Any | UUID | Iterable[PrefectFuture[Any]] | None`

src/integrations/prefect-snowflake/prefect_snowflake/credentials.py

[warning] possibly-missing-attribute - :340:39 - Attribute `get_secret_value` on type `Unknown | str` may be missing

src/integrations/prefect-sqlalchemy/prefect_sqlalchemy/database.py

[error] invalid-argument-type - :218:42 -
Old: Argument to function `create_async_engine` is incorrect: Expected `str | URL`, found `Unknown | (Unknown & ~AlwaysFalsy) | dict[@Todo, @Todo] | dict[str, Any]`
New: Argument to function `create_async_engine` is incorrect: Expected `str | URL`, found `Unknown | (Unknown & ~AlwaysFalsy) | dict[Unknown, Unknown] | dict[str, Any]`

src/prefect/cli/deploy/_actions.py

[error] invalid-assignment - :193:9 -
Old: Method `__setitem__` of type `Overload[(key: SupportsIndex, value: dict[str, Any], /) -> None, (key: slice[Any, Any, Any], value: Iterable[dict[str, Any]], /) -> None]` cannot be called with a key of type `Literal["push"]` and a value of type `list[Unknown | dict[@Todo, @Todo]]` on object of type `list[dict[str, Any]]`
New: Method `__setitem__` of type `Overload[(key: SupportsIndex, value: dict[str, Any], /) -> None, (key: slice[Any, Any, Any], value: Iterable[dict[str, Any]], /) -> None]` cannot be called with a key of type `Literal["push"]` and a value of type `list[Unknown | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str | (Unknown & ~AlwaysFalsy) | None]]]` on object of type `list[dict[str, Any]]`
[error] invalid-assignment - :201:9 -
Old: Method `__setitem__` of type `Overload[(key: SupportsIndex, value: dict[str, Any], /) -> None, (key: slice[Any, Any, Any], value: Iterable[dict[str, Any]], /) -> None]` cannot be called with a key of type `Literal["pull"]` and a value of type `list[Unknown | dict[@Todo, @Todo]]` on object of type `list[dict[str, Any]]`
New: Method `__setitem__` of type `Overload[(key: SupportsIndex, value: dict[str, Any], /) -> None, (key: slice[Any, Any, Any], value: Iterable[dict[str, Any]], /) -> None]` cannot be called with a key of type `Literal["pull"]` and a value of type `list[Unknown | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str | (Unknown & ~AlwaysFalsy) | None]]]` on object of type `list[dict[str, Any]]`

src/prefect/cli/deploy/_config.py

[error] invalid-return-type - :227:12 -
Old: Return type does not match returned value: expected `dict[str, Any]`, found `tuple[dict[str, Any], dict[@Todo, @Todo]]`
New: Return type does not match returned value: expected `dict[str, Any]`, found `tuple[dict[str, Any], dict[str, Any]]`

src/prefect/cli/deploy/_core.py

[error] invalid-argument-type - :246:63 -
Old: Argument to function `_generate_actions_for_remote_flow_storage` is incorrect: Expected `list[dict[str, Any]]`, found `(dict[str, Any] & ~AlwaysFalsy) | dict[@Todo, @Todo]`
New: Argument to function `_generate_actions_for_remote_flow_storage` is incorrect: Expected `list[dict[str, Any]]`, found `(dict[str, Any] & ~AlwaysFalsy) | dict[Unknown, Unknown]`
[error] invalid-argument-type - :266:13 -
Old: Argument to function `_generate_default_pull_action` is incorrect: Expected `list[dict[str, Any]]`, found `(dict[str, Any] & ~AlwaysFalsy) | dict[@Todo, @Todo] | dict[str, list[dict[str, Any]]]`
New: Argument to function `_generate_default_pull_action` is incorrect: Expected `list[dict[str, Any]]`, found `(dict[str, Any] & ~AlwaysFalsy) | dict[Unknown, Unknown] | dict[str, list[dict[str, Any]]]`
[error] invalid-argument-type - :414:56 -
Old: Argument is incorrect: Expected `WorkerFilterStatus | None`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `WorkerFilterStatus | None`, found `dict[Unknown | str, Unknown | list[Unknown | str]]`

src/prefect/cli/deployment.py

[error] invalid-argument-type - :395:37 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Unknown | timedelta`
[error] invalid-argument-type - :414:33 - Argument is incorrect: Expected `bool`, found `Unknown | str | (Unknown & ~None) | bool`
[error] invalid-argument-type - :414:33 - Argument is incorrect: Expected `set[str]`, found `Unknown | str | (Unknown & ~None) | bool`
[error] invalid-argument-type - :414:33 - Argument is incorrect: Expected `str | None`, found `Unknown | str | (Unknown & ~None) | bool`
[error] invalid-argument-type - :414:33 - Argument is incorrect: Expected `str`, found `Unknown | str | (Unknown & ~None) | bool`

src/prefect/cli/events.py

[error] invalid-argument-type - :177:9 -
Old: Argument is incorrect: Expected `Resource`, found `dict[@Todo, @Todo] | Any`
New: Argument is incorrect: Expected `Resource`, found `dict[Unknown, Unknown] | Any`

src/prefect/cli/flow_run.py

[error] invalid-argument-type - :183:36 -
Old: Argument is incorrect: Expected `FlowFilterName | None`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `FlowFilterName | None`, found `dict[Unknown | str, Unknown | (list[str] & ~AlwaysFalsy) | (Unknown & ~AlwaysFalsy)]`
[error] invalid-argument-type - :184:43 -
Old: Argument is incorrect: Expected `FlowRunFilterState | None`, found `dict[@Todo, @Todo] & ~AlwaysFalsy`
New: Argument is incorrect: Expected `FlowRunFilterState | None`, found `dict[Unknown, Unknown] & ~AlwaysFalsy`
[error] invalid-argument-type - :191:40 -
Old: Argument is incorrect: Expected `FlowFilterId | None`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `FlowFilterId | None`, found `dict[Unknown | str, Unknown | list[@Todo]]`
[error] invalid-argument-type - :323:28 -
Old: Argument is incorrect: Expected `LogFilterFlowRunId | None`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `LogFilterFlowRunId | None`, found `dict[Unknown | str, Unknown | list[Unknown | UUID]]`

src/prefect/cli/variable.py

[error] invalid-argument-type - :163:57 - Argument is incorrect: Expected `list[str] | None`, found `Unknown | str | int | float | None | dict[str, Any] | list[str] | list[Unknown]`
[error] invalid-argument-type - :163:57 - Argument is incorrect: Expected `set[str]`, found `Unknown | str | int | float | None | dict[str, Any] | list[str] | list[Unknown]`
[error] invalid-argument-type - :165:57 - Argument is incorrect: Expected `list[str] | None`, found `Unknown | str | int | float | None | dict[str, Any] | list[str] | list[Unknown]`
[error] invalid-argument-type - :165:57 - Argument is incorrect: Expected `set[str]`, found `Unknown | str | int | float | None | dict[str, Any] | list[str] | list[Unknown]`

src/prefect/deployments/__init__.py

[error] invalid-assignment - :10:1 - Object of type `dict[Unknown | str, Unknown | tuple[str | None, str]]` is not assignable to `dict[str, tuple[str, str]]`

src/prefect/deployments/runner.py

[error] invalid-argument-type - :619:25 - Argument to function `construct_schedule` is incorrect: Expected `int | float | timedelta | None`, found `Unknown | str | None | datetime`
[error] invalid-argument-type - :619:25 - Argument to function `construct_schedule` is incorrect: Expected `str | None`, found `Unknown | str | None | datetime`
[error] invalid-argument-type - :619:25 - Argument to function `construct_schedule` is incorrect: Expected `str | None`, found `Unknown | str | None | datetime`
[error] invalid-argument-type - :619:25 - Argument to function `construct_schedule` is incorrect: Expected `str | None`, found `Unknown | str | None | datetime`

src/prefect/deployments/steps/core.py

[error] invalid-assignment - :191:17 -
Old: Method `__setitem__` of type `(bound method dict[str, Any].__setitem__(key: str, value: Any, /) -> None) | (bound method dict[@Todo, @Todo].__setitem__(key: @Todo, value: @Todo, /) -> None)` cannot be called with a key of type `Unknown | None` and a value of type `dict[str, Any]` on object of type `(dict[str, Any] & ~AlwaysFalsy) | dict[@Todo, @Todo]`
New: Method `__setitem__` of type `(bound method dict[str, Any].__setitem__(key: str, value: Any, /) -> None) | (bound method dict[Unknown, Unknown].__setitem__(key: Unknown, value: Unknown, /) -> None)` cannot be called with a key of type `Unknown | None` and a value of type `dict[str, Any]` on object of type `(dict[str, Any] & ~AlwaysFalsy) | dict[Unknown, Unknown]`

src/prefect/flow_engine.py

[error] invalid-argument-type - :491:21 -
Old: Argument is incorrect: Expected `FlowRunFilterParentTaskRunId | None`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `FlowRunFilterParentTaskRunId | None`, found `dict[Unknown | str, Unknown | list[Unknown | UUID]]`
[error] invalid-argument-type - :1063:21 -
Old: Argument is incorrect: Expected `FlowRunFilterParentTaskRunId | None`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `FlowRunFilterParentTaskRunId | None`, found `dict[Unknown | str, Unknown | list[Unknown | UUID]]`

src/prefect/infrastructure/provisioners/__init__.py

[error] invalid-return-type - :56:12 - Return type does not match returned value: expected `type[@Todo]`, found `@Todo | CloudRunPushProvisioner | ContainerInstancePushProvisioner | ElasticContainerServicePushProvisioner | ModalPushProvisioner | CoiledPushProvisioner`

src/prefect/input/run_input.py

[error] no-matching-overload - :389:49 - No overload of function `create_model` matches arguments

src/prefect/server/api/flow_runs.py

[error] invalid-argument-type - :861:25 -
Old: Argument is incorrect: Expected `LogFilterFlowRunId | None`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `LogFilterFlowRunId | None`, found `dict[Unknown | str, Unknown | list[Unknown | UUID]]`

src/prefect/server/api/server.py

[error] invalid-assignment - :807:5 -
Old: Method `__setitem__` of type `(bound method dict[@Todo, @Todo].__setitem__(key: @Todo, value: @Todo, /) -> None) | (bound method dict[tuple[Settings, bool], Unknown].__setitem__(key: tuple[Settings, bool], value: Unknown, /) -> None)` cannot be called with a key of type `tuple[str | @Todo, bool, bool]` and a value of type `Unknown` on object of type `dict[@Todo, @Todo] | dict[tuple[Settings, bool], Unknown]`
New: Method `__setitem__` of type `bound method dict[tuple[Settings, bool], Unknown].__setitem__(key: tuple[Settings, bool], value: Unknown, /) -> None` cannot be called with a key of type `tuple[str | @Todo, bool, bool]` and a value of type `Unknown` on object of type `dict[tuple[Settings, bool], Unknown]`

src/prefect/server/events/schemas/automations.py

[error] invalid-argument-type - :135:13 -
Old: Argument is incorrect: Expected `Resource`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `Resource`, found `dict[Unknown | str, Unknown | str]`
[error] invalid-argument-type - :139:13 -
Old: Argument is incorrect: Expected `list[RelatedResource]`, found `list[Unknown | dict[@Todo, @Todo]] | list[Unknown]`
New: Argument is incorrect: Expected `list[RelatedResource]`, found `list[Unknown | dict[Unknown | str, Unknown | str]] | list[Unknown]`

src/prefect/server/events/triggers.py

[error] invalid-argument-type - :1074:65 - Argument to function `automation_changed` is incorrect: Expected `Literal["automation__created", "automation__updated", "automation__deleted"]`, found `@Todo | str`

src/prefect/server/models/events.py

[error] invalid-argument-type - :54:9 -
Old: Argument is incorrect: Expected `Resource`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `Resource`, found `dict[Unknown | str, Unknown | str | None]`
[error] invalid-argument-type - :356:9 -
Old: Argument is incorrect: Expected `Resource`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `Resource`, found `dict[Unknown | str, Unknown | str]`
[error] invalid-argument-type - :391:9 -
Old: Argument is incorrect: Expected `Resource`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `Resource`, found `dict[Unknown | str, Unknown | str]`
[error] invalid-argument-type - :413:9 -
Old: Argument is incorrect: Expected `Resource`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `Resource`, found `dict[Unknown | str, Unknown | str]`

src/prefect/server/models/work_queues.py

[error] invalid-argument-type - :485:54 -
Old: Argument is incorrect: Expected `FlowRunFilterStateName | None`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `FlowRunFilterStateName | None`, found `dict[Unknown | str, Unknown | list[Unknown | str]]`

src/prefect/utilities/templating.py

[error] invalid-assignment - :214:17 - Method `__setitem__` of type `bound method dict[str, Any].__setitem__(key: str, value: Any, /) -> None` cannot be called with a key of type `object` and a value of type `Unknown & ~<class 'NotSet'>` on object of type `dict[str, Any]`
[error] invalid-assignment - :216:17 - Method `__setitem__` of type `bound method dict[str, Any].__setitem__(key: str, value: Any, /) -> None` cannot be called with a key of type `object` and a value of type `object` on object of type `dict[str, Any]`
[error] invalid-assignment - :320:13 - Method `__setitem__` of type `bound method dict[str, Any].__setitem__(key: str, value: Any, /) -> None` cannot be called with a key of type `object` and a value of type `Unknown` on object of type `dict[str, Any]`

pwndbg (https://github.com/pwndbg/pwndbg)

pwndbg/aglib/heap/structs.py

[warning] possibly-missing-attribute - :96:9 - Attribute `__ctype_le__` on type `Unknown | <class 'c_char'> | <class 'c_byte'> | <class 'c_int16'> | <class 'c_int32'> | <class 'c_int64'> | <class 'c_ubyte'> | <class 'c_uint16'> | <class 'c_uint32'> | <class 'c_uint64'> | <class 'c_pvoid'> | <class 'c_size_t'>` may be missing
[warning] possibly-missing-attribute - :100:9 - Attribute `__ctype_be__` on type `Unknown | <class 'c_char'> | <class 'c_byte'> | <class 'c_int16'> | <class 'c_int32'> | <class 'c_int64'> | <class 'c_ubyte'> | <class 'c_uint16'> | <class 'c_uint32'> | <class 'c_uint64'> | <class 'c_pvoid'> | <class 'c_size_t'>` may be missing

pwndbg/aglib/typeinfo.py

[error] invalid-assignment - :74:5 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to attribute `unsigned` on type `Unknown | ModuleType`
New: Object of type `dict[Unknown | int, Unknown]` is not assignable to attribute `unsigned` on type `Unknown | ModuleType`
[error] invalid-assignment - :85:5 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to attribute `signed` on type `Unknown | ModuleType`
New: Object of type `dict[Unknown | int, Unknown]` is not assignable to attribute `signed` on type `Unknown | ModuleType`

pwndbg/commands/context.py

[warning] possibly-missing-attribute - :181:9 - Attribute `__name__` on type `Unknown | ((...) -> list[str])` may be missing

pwndbg/commands/sigreturn.py

[error] invalid-assignment - :35:1 - Object of type `dict[Unknown | str, Unknown | set[Unknown | str | None] | set[Unknown | str]]` is not assignable to `dict[str, set[str]]`

pwndbg/dbg/lldb/__init__.py

[error] invalid-assignment - :1518:21 -
Old: Object of type `@Todo | None` is not assignable to `Type`
New: Object of type `LLDBType | None` is not assignable to `Type`

pwndbg/gdblib/tui/context.py

[warning] possibly-missing-attribute - :216:9 - Attribute `__name__` on type `Unknown | ((...) -> list[str])` may be missing

pwndbg/lib/funcparser.py

[error] invalid-assignment - :95:13 - Method `__setitem__` of type `bound method dict[str, Function].__setitem__(key: str, value: Function, /) -> None` cannot be called with a key of type `str` and a value of type `Function | None` on object of type `dict[str, Function]`

pwndbg/lib/zig.py

[error] invalid-assignment - :17:1 - Object of type `dict[Unknown | tuple[str, str, int], Unknown | str]` is not assignable to `dict[tuple[Unknown, Literal["little", "big"], int], str]`

pybind11 (https://github.com/pybind/pybind11)

tests/test_pytypes.py

[error] no-matching-overload - :450:29 - No overload of class `str` matches arguments
[error] invalid-argument-type - :450:31 - Argument to class `tuple` is incorrect: Expected `Iterable[object]`, found `Unknown | bytes | bytearray | int | str | range | list[Unknown | tuple[str, int]] | list[Unknown | int]`

pydantic (https://github.com/pydantic/pydantic)

pydantic/__init__.py

[error] invalid-assignment - :247:1 - Object of type `dict[Unknown | str, Unknown | tuple[str | None, str]]` is not assignable to `dict[str, tuple[str, str]]`

pydantic/_internal/_dataclasses.py

[error] no-matching-overload - :223:12 - No overload of function `field` matches arguments

pydantic/_internal/_generate_schema.py

[error] invalid-assignment - :1942:9 - Object of type `dict[Unknown | _ParameterKind, Unknown | str]` is not assignable to `dict[_ParameterKind, Literal["positional_only", "positional_or_keyword", "keyword_only"]]`
[error] invalid-assignment - :2016:9 - Object of type `dict[Unknown | _ParameterKind, Unknown | str]` is not assignable to `dict[_ParameterKind, Literal["positional_only", "positional_or_keyword", "var_args", "keyword_only"]]`
[error] invalid-assignment - :2444:1 - Object of type `dict[Unknown | tuple[str, str], Unknown | ((f, schema) -> Unknown) | ((f, _) -> Unknown)]` is not assignable to `Mapping[tuple[@Todo, Literal["no-info", "with-info"]], ((...) -> Any, Unknown, /) -> Unknown]`

pyinstrument (https://github.com/joerick/pyinstrument)

pyinstrument/context_manager.py

[error] invalid-argument-type - :40:34 - Argument to bound method `__init__` is incorrect: Expected `int | float`, found `Unknown | None`

pylint (https://github.com/pycqa/pylint)

pylint/checkers/unicode.py

[error] invalid-argument-type - :414:17 - Argument to function `_map_positions_to_result` is incorrect: Expected `dict[bytes | str, _BadChar]`, found `dict[bytes, _BadChar]`

pyppeteer (https://github.com/pyppeteer/pyppeteer)

pyppeteer/input.py

[warning] unused-ignore-comment - :144:43 - Unused blanket `type: ignore` directive

pyppeteer/network_manager.py

[warning] possibly-missing-implicit-call - :727:13 - Method `__setitem__` of type `Unknown | str | None | dict[Unknown, Unknown]` may be missing

pytest (https://github.com/pytest-dev/pytest)

src/_pytest/fixtures.py

[error] invalid-return-type - :1658:24 - Return type does not match returned value: expected `Scope`, found `Scope | (Unknown & ~None & ~((...) -> object) & ~str) | (((str, Config, /) -> Unknown) & ~((...) -> object) & ~str) | (Unknown & ~str)`

src/_pytest/terminal.py

[error] no-matching-overload - :1550:9 - No overload of bound method `setdefault` matches arguments

testing/test_assertrewrite.py

[warning] unused-ignore-comment - :62:17 - Unused blanket `type: ignore` directive

testing/test_monkeypatch.py

[error] invalid-argument-type - :172:25 - Argument to bound method `setitem` is incorrect: Expected `Mapping[Literal["y"], Literal[1700]]`, found `dict[str, object] & ~AlwaysTruthy`
[error] invalid-argument-type - :175:25 - Argument to bound method `setitem` is incorrect: Expected `Mapping[Literal["x"], Literal[1500]]`, found `dict[str, object] & ~AlwaysTruthy`

testing/test_pathlib.py

[warning] possibly-missing-attribute - :875:16 - Attribute `tests` on type `Unknown | ModuleType` may be missing
[warning] possibly-missing-attribute - :876:16 - Attribute `foo` on type `Unknown | ModuleType` may be missing

pywin32 (https://github.com/mhammond/pywin32)

win32/Demos/win32cred_demo.py

[error] invalid-argument-type - :73:13 -
Old: Argument to function `LoadUserProfile` is incorrect: Expected `PyPROFILEINFO`, found `dict[@Todo, @Todo]`
New: Argument to function `LoadUserProfile` is incorrect: Expected `PyPROFILEINFO`, found `dict[Unknown | str, Unknown | str | int | (Unknown & ~AlwaysFalsy) | None]`

win32/Demos/win32gui_demo.py

[error] invalid-argument-type - :41:9 -
Old: Argument to function `SetWorldTransform` is incorrect: Expected `PyXFORM`, found `dict[@Todo, @Todo]`
New: Argument to function `SetWorldTransform` is incorrect: Expected `PyXFORM`, found `dict[Unknown | str, Unknown | int | float]`
[error] invalid-argument-type - :101:35 -
Old: Argument to function `GradientFill` is incorrect: Expected `tuple[PyTRIVERTEX, ...]`, found `tuple[dict[@Todo, @Todo], dict[@Todo, @Todo], dict[@Todo, @Todo]]`
New: Argument to function `GradientFill` is incorrect: Expected `tuple[PyTRIVERTEX, ...]`, found `tuple[dict[Unknown | str, Unknown | int], dict[Unknown | str, Unknown | int], dict[Unknown | str, Unknown | int]]`

win32/Demos/win32netdemo.py

[error] invalid-argument-type - :167:64 -
Old: Argument to function `NetLocalGroupAddMembers` is incorrect: Expected `tuple[@Todo, @Todo]`, found `list[Unknown | dict[@Todo, @Todo]]`
New: Argument to function `NetLocalGroupAddMembers` is incorrect: Expected `tuple[@Todo, @Todo]`, found `list[Unknown | dict[Unknown | str, Unknown | (Unknown & ~None) | str]]`

rich (https://github.com/Textualize/rich)

rich/pretty.py

[warning] unused-ignore-comment - :1006:31 - Unused blanket `type: ignore` directive

tests/test_console.py

[error] invalid-return-type - :173:16 - Return type does not match returned value: expected `tuple[int, int]`, found `(Unknown & ~<class 'ValueError'>) | tuple[int, int] | (type[ValueError] & ~<class 'ValueError'>)`

rotki (https://github.com/rotki/rotki)

rotkehlchen/chain/balances.py

[warning] possibly-missing-implicit-call - :213:13 - Method `__setitem__` of type `Any | dict[Unknown, Unknown] | (Any & ~None) | str | None` may be missing

rotkehlchen/chain/bitcoin/btc/manager.py

[error] invalid-argument-type - :95:63 - Argument to function `request_get_dict` is incorrect: Expected `bool`, found `Unknown | int`
[error] invalid-argument-type - :101:25 - Argument to function `request_get_dict` is incorrect: Expected `bool`, found `Unknown | int`

rotkehlchen/chain/evm/decoding/balancer/constants.py

[error] invalid-assignment - :27:1 - Object of type `dict[Unknown | str, Unknown | int]` is not assignable to `dict[str, Literal[1, 2, 3]]`

rotkehlchen/constants/location_details.py

[warning] possibly-missing-implicit-call - :98:17 - Method `__setitem__` of type `Unknown | str` may be missing
[warning] possibly-missing-implicit-call - :100:17 - Method `__setitem__` of type `Unknown | str` may be missing
[warning] possibly-missing-implicit-call - :102:17 - Method `__setitem__` of type `Unknown | str` may be missing

rotkehlchen/tests/db/test_reports.py

[error] call-non-callable - :199:31 - Object of type `list[Unknown | Asset]` is not callable
[error] call-non-callable - :199:31 - Object of type `list[Unknown | FVal]` is not callable
[error] call-non-callable - :199:31 - Object of type `list[Unknown | int]` is not callable
[error] call-non-callable - :199:31 - Object of type `str` is not callable
[error] non-subscriptable - :202:34 - Cannot subscript object of type `(event) -> Unknown` with no `__getitem__` method

rotkehlchen/tests/unit/test_logging.py

[error] invalid-argument-type - :21:35 - Argument to bound method `debug` is incorrect: Expected `Mapping[str, object] | None`, found `Unknown | dict[Unknown | str, Unknown | str] | str`
[error] invalid-argument-type - :21:35 - Argument to bound method `debug` is incorrect: Expected `bool`, found `Unknown | dict[Unknown | str, Unknown | str] | str`
[error] invalid-argument-type - :21:35 - Argument to bound method `debug` is incorrect: Expected `int`, found `Unknown | dict[Unknown | str, Unknown | str] | str`

rotkehlchen/api/rest.py

[error] invalid-argument-type - :3255:21 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `str` on object of type `str`

rotkehlchen/chain/evm/decoding/zerox/decoder.py

[warning] unused-ignore-comment - :226:67 - Unused blanket `type: ignore` directive

rotkehlchen/db/accounting_rules.py

[warning] unused-ignore-comment - :316:68 - Unused blanket `type: ignore` directive

rotkehlchen/externalapis/alchemy.py

[warning] possibly-missing-implicit-call - :85:13 - Method `__setitem__` of type `Any | str | dict[Unknown | str, Unknown | str]` may be missing
[warning] possibly-missing-implicit-call - :87:13 - Method `__setitem__` of type `Any | str | dict[Unknown | str, Unknown | str]` may be missing
[warning] possibly-missing-implicit-call - :88:13 - Method `__setitem__` of type `Any | str | dict[Unknown | str, Unknown | str]` may be missing

rotkehlchen/tests/api/test_accounting_rules.py

[warning] possibly-missing-implicit-call - :154:5 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | bool | str] | dict[Unknown | str, Unknown | bool] | str | None` may be missing
[warning] possibly-missing-attribute - :588:5 - Attribute `append` on type `Any | dict[Unknown | str, Unknown | bool] | str` may be missing

rotkehlchen/tests/api/test_assets.py

[warning] unused-ignore-comment - :1317:72 - Unused blanket `type: ignore` directive

rotkehlchen/tests/api/test_ethereum_transactions.py

[warning] possibly-missing-implicit-call - :882:5 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | int | str | None] | str` may be missing
[warning] possibly-missing-implicit-call - :883:5 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | int | str | None] | str` may be missing
[warning] possibly-missing-implicit-call - :884:5 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | int | str | None] | str` may be missing
[warning] possibly-missing-implicit-call - :885:5 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | int | str | None] | str` may be missing
[warning] possibly-missing-implicit-call - :886:5 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | int | str | None] | str` may be missing
[warning] possibly-missing-attribute - :890:44 - Attribute `items` on type `Unknown | dict[Unknown | str, Unknown | int | str | None] | str` may be missing
[warning] possibly-missing-attribute - :918:44 - Attribute `items` on type `Unknown | dict[Unknown | str, Unknown | int | str | None] | str` may be missing
[warning] possibly-missing-implicit-call - :921:5 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | int | str | None] | str` may be missing

rotkehlchen/tests/api/test_history_base_entry.py

[warning] unused-ignore-comment - :1222:60 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :1226:94 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :1228:56 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :1232:70 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :1257:79 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :1258:39 - Unused blanket `type: ignore` directive

rotkehlchen/tests/db/test_db_upgrades.py

[error] invalid-argument-type - :3333:9 -
Old: Argument to function `sanity_check_impl` is incorrect: Expected `dict[str, str]`, found `Unknown | None | dict[@Todo, @Todo]`
New: Argument to function `sanity_check_impl` is incorrect: Expected `dict[str, str]`, found `Unknown | None | dict[Unknown | str, Unknown | str]`
[error] invalid-argument-type - :3334:9 -
Old: Argument to function `sanity_check_impl` is incorrect: Expected `dict[str, str]`, found `Unknown | None | dict[@Todo, @Todo]`
New: Argument to function `sanity_check_impl` is incorrect: Expected `dict[str, str]`, found `Unknown | None | dict[Unknown | str, Unknown | str]`

rotkehlchen/tests/external_apis/test_etherscan.py

[error] non-subscriptable - :131:34 - Cannot subscript object of type `int` with no `__getitem__` method

rotkehlchen/tests/integration/test_blockchain.py

[error] invalid-argument-type - :40:9 - Argument to function `mock_etherscan_query` is incorrect: Expected `dict[Unknown, dict[str | EvmToken, Any]]`, found `dict[Unknown, Unknown | dict[Unknown | Asset, Unknown | int]]`

rotkehlchen/tests/unit/globaldb/test_asset_updates.py

[error] invalid-argument-type - :405:9 - Argument to bound method `_apply_single_version_update` is incorrect: Expected `dict[Asset, Literal["remote", "local"]] | None`, found `dict[Unknown | Asset, Unknown | str]`

rotkehlchen/tests/unit/globaldb/test_globaldb_consistency.py

[error] invalid-argument-type - :357:56 - Argument to bound method `deserialize` is incorrect: Expected `int`, found `Unknown | list[Unknown]`

rotkehlchen/tests/unit/test_blockchain_balances.py

[error] invalid-argument-type - :155:5 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str]] | str], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str]] | str]]]` cannot be called with key of type `Literal["assets"]` on object of type `list[Unknown | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str]] | str]]`
[error] invalid-argument-type - :85:9 -
Old: Argument is incorrect: Expected `defaultdict[Asset, defaultdict[str, Balance]]`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `defaultdict[Asset, defaultdict[str, Balance]]`, found `dict[Unknown | Asset, Unknown | dict[Unknown | str, Unknown | Balance]]`
[error] invalid-argument-type - :101:9 -
Old: Argument is incorrect: Expected `defaultdict[Asset, defaultdict[str, Balance]]`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `defaultdict[Asset, defaultdict[str, Balance]]`, found `dict[Unknown | Asset, Unknown | dict[Unknown | str, Unknown | Balance]]`

rotkehlchen/tests/unit/test_data_updates.py

[warning] possibly-missing-implicit-call - :286:25 - Method `__setitem__` of type `Unknown | int | dict[Unknown, Unknown]` may be missing
[error] non-subscriptable - :288:29 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :290:29 - Cannot subscript object of type `int` with no `__getitem__` method

rotkehlchen/tests/unit/test_ethereum_airdrops.py

[error] invalid-assignment - :327:5 - Method `__setitem__` of type `Unknown | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (bound method dict[Unknown | str, Unknown | str | int].__setitem__(key: Unknown | str, value: Unknown | str | int, /) -> None) | (bound method dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str | int]].__setitem__(key: Unknown | str, value: Unknown | str | dict[Unknown | str, Unknown | str | int], /) -> None) | (bound method dict[Unknown | str, Unknown | str | int | dict[Unknown | str, Unknown | str | int]].__setitem__(key: Unknown | str, value: Unknown | str | int | dict[Unknown | str, Unknown | str | int], /) -> None) | (bound method dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str]].__setitem__(key: Unknown | str, value: Unknown | str | dict[Unknown | str, Unknown | str], /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["new_asset_data"]` and a value of type `Unknown` on object of type `Unknown | dict[Unknown | str, Unknown | str] | dict[Unknown | str, Unknown | str | int] | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str | int | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str]] | list[Unknown | str]`
[error] invalid-argument-type - :330:28 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["asset_identifier"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :420:28 - Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | str, (s: slice[Any, Any, Any], /) -> list[Unknown | str]]` cannot be called with key of type `Literal["file_hash"]` on object of type `list[Unknown | str]`
[error] invalid-argument-type - :426:51 - Argument to function `resolve_asset` is incorrect: Expected `str`, found `Unknown | str | int | dict[Unknown | str, Unknown | str | int] | dict[Unknown | str, Unknown | str]`
[error] invalid-assignment - :592:9 - Method `__setitem__` of type `Unknown | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (bound method dict[Unknown | str, Unknown | str | int].__setitem__(key: Unknown | str, value: Unknown | str | int, /) -> None) | (bound method dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str | int]].__setitem__(key: Unknown | str, value: Unknown | str | dict[Unknown | str, Unknown | str | int], /) -> None) | (bound method dict[Unknown | str, Unknown | str | int | dict[Unknown | str, Unknown | str | int]].__setitem__(key: Unknown | str, value: Unknown | str | int | dict[Unknown | str, Unknown | str | int], /) -> None) | (bound method dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str]].__setitem__(key: Unknown | str, value: Unknown | str | dict[Unknown | str, Unknown | str], /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None])` cannot be called with a key of type `Literal["name"]` and a value of type `Literal["new_name"]` on object of type `Unknown | dict[Unknown | str, Unknown | str] | dict[Unknown | str, Unknown | str | int] | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str | int | dict[Unknown | str, Unknown | str | int]] | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str]] | list[Unknown | str]`

rotkehlchen/tests/unit/test_serialization.py

[error] invalid-argument-type - :107:46 - Argument to function `deserialize_evm_address` is incorrect: Expected `str`, found `Unknown | int | str | None`
[error] invalid-argument-type - :109:9 - Argument is incorrect: Expected `int`, found `Unknown | int | str | None`
[error] invalid-argument-type - :110:9 - Argument is incorrect: Expected `int`, found `Unknown | int | str | None`
[error] invalid-argument-type - :111:9 - Argument is incorrect: Expected `int`, found `Unknown | int | str | None`
[error] invalid-argument-type - :112:9 - Argument is incorrect: Expected `int`, found `Unknown | int | str | None`
[error] invalid-argument-type - :114:9 - Argument is incorrect: Expected `int`, found `Unknown | int | str | None`

rotkehlchen/tests/unit/test_structures.py

[error] invalid-argument-type - :191:9 -
Old: Argument is incorrect: Expected `defaultdict[Asset, defaultdict[str, Balance]]`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `defaultdict[Asset, defaultdict[str, Balance]]`, found `dict[Unknown | Asset, Unknown | dict[Unknown | str, Unknown | Balance]]`
[error] invalid-argument-type - :195:9 -
Old: Argument is incorrect: Expected `defaultdict[Asset, defaultdict[str, Balance]]`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `defaultdict[Asset, defaultdict[str, Balance]]`, found `dict[Unknown | Asset, Unknown | dict[Unknown | str, Unknown | Balance]]`
[error] invalid-argument-type - :214:9 -
Old: Argument is incorrect: Expected `defaultdict[Asset, defaultdict[str, Balance]]`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `defaultdict[Asset, defaultdict[str, Balance]]`, found `dict[Unknown | Asset, Unknown | dict[Unknown | str, Unknown | Balance]]`
[error] invalid-argument-type - :218:9 -
Old: Argument is incorrect: Expected `defaultdict[Asset, defaultdict[str, Balance]]`, found `dict[@Todo, @Todo]`
New: Argument is incorrect: Expected `defaultdict[Asset, defaultdict[str, Balance]]`, found `dict[Unknown | Asset, Unknown | dict[Unknown | str, Unknown | Balance]]`

rotkehlchen/tests/utils/database.py

[warning] unused-ignore-comment - :105:96 - Unused blanket `type: ignore` directive

rotkehlchen/tests/utils/ethereum.py

[warning] possibly-missing-attribute - :216:9 - Attribute `append` on type `Any | str | None | int | list[Unknown]` may be missing

rotkehlchen/tests/utils/premium.py

[error] invalid-argument-type - :70:17 -
Old: Argument to bound method `__init__` is incorrect: Expected `str`, found `dict[@Todo, @Todo]`
New: Argument to bound method `__init__` is incorrect: Expected `str`, found `dict[Unknown | str, Unknown | str]`

schemathesis (https://github.com/schemathesis/schemathesis)

src/schemathesis/generation/coverage.py

[error] invalid-argument-type - :546:62 - Argument to function `_negative_pattern` is incorrect: Expected `int | None`, found `Unknown | None | dict[Unknown, Unknown]`
[error] invalid-argument-type - :546:85 - Argument to function `_negative_pattern` is incorrect: Expected `int | None`, found `Unknown | None | dict[Unknown, Unknown]`
[error] unsupported-operator - :854:35 - Operator `<` is not supported for types `str` and `int`, in comparing `(Unknown & ~Literal[0] & ~None) | str` with `Unknown | Literal[32768]`
[error] unsupported-operator - :864:18 - Operator `+` is unsupported between objects of type `(Unknown & ~Literal[0] & ~None) | str` and `Literal[1]`
[error] unsupported-operator - :875:12 - Operator `<` is not supported for types `str` and `int`, in comparing `(Unknown & ~None) | str` with `Unknown | Literal[32768]`
[error] unsupported-operator - :882:19 - Operator `-` is unsupported between objects of type `(Unknown & ~None) | str` and `Literal[1]`
[error] unsupported-operator - :912:19 - Operator `+` is unsupported between objects of type `(Unknown & ~None) | str` and `Literal[1]`
[error] unsupported-operator - :914:19 - Operator `-` is unsupported between objects of type `(Unknown & ~None) | str` and `Literal[1]`
[error] invalid-argument-type - :944:54 - Argument to function `closest_multiple_greater_than` is incorrect: Expected `int`, found `(Unknown & ~None) | str`
[error] invalid-argument-type - :944:63 - Argument to function `closest_multiple_greater_than` is incorrect: Expected `int`, found `(Unknown & ~None) | str`
[error] unsupported-operator - :952:22 - Operator `+` is unsupported between objects of type `int | (Unknown & ~None) | str` and `(Unknown & ~None) | str`
[error] unsupported-operator - :954:22 - Operator `+` is unsupported between objects of type `(Unknown & ~None) | str` and `Literal[1]`
[error] unsupported-operator - :961:23 - Operator `-` is unsupported between objects of type `(Unknown & ~None) | str` and `Unknown | str`
[error] unsupported-operator - :969:23 - Operator `-` is unsupported between objects of type `Unknown | (Unknown & ~None) | str` and `(Unknown & ~None) | str`
[error] unsupported-operator - :971:23 - Operator `-` is unsupported between objects of type `(Unknown & ~None) | str` and `Literal[1]`

src/schemathesis/transport/requests.py

[warning] possibly-missing-attribute - :85:13 - Attribute `pop` on type `Unknown | str | dict[str, Any] | CaseInsensitiveDict[Unknown]` may be missing

scikit-build-core (https://github.com/scikit-build/scikit-build-core)

src/scikit_build_core/settings/skbuild_schema.py

[error] invalid-argument-type - :51:16 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["generate"]` on object of type `str`
[error] invalid-argument-type - :65:5 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["generate"]` on object of type `str`
[error] invalid-argument-type - :79:9 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["metadata"]` on object of type `str`
[error] invalid-argument-type - :80:5 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["metadata"]` on object of type `str`
[error] invalid-argument-type - :81:5 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["metadata"]` on object of type `str`
[warning] possibly-missing-attribute - :169:21 - Attribute `items` on type `Unknown | str` may be missing
[warning] possibly-missing-implicit-call - :178:5 - Method `__setitem__` of type `Unknown | str` may be missing

tests/test_settings.py

[error] invalid-argument-type - :700:13 - Argument to bound method `__init__` is incorrect: Expected `Mapping[str, str | list[str] | bool]`, found `dict[Unknown | str, Unknown | list[Unknown | dict[Unknown | str, Unknown | str]]]`

scikit-learn (https://github.com/scikit-learn/scikit-learn)

sklearn/neighbors/_nca.py

[error] no-matching-overload - :325:22 - No overload of function `minimize` matches arguments

sklearn/svm/_base.py

[warning] possibly-missing-attribute - :1053:24 - Attribute `get` on type `(Unknown & ~None) | dict[Unknown | str, Unknown | dict[Unknown | bool, Unknown | int]] | int` may be missing

sklearn/cluster/_agglomerative.py

[error] call-non-callable - :683:21 - Object of type `None` is not callable

sklearn/ensemble/tests/test_forest.py

[error] no-matching-overload - :1127:13 - No overload of function `asarray` matches arguments
[error] no-matching-overload - :1127:13 - No overload of function `ascontiguousarray` matches arguments

sklearn/linear_model/_ridge.py

[error] no-matching-overload - :367:18 - No overload of function `minimize` matches arguments

sklearn/manifold/_t_sne.py

[error] invalid-assignment - :1074:13 - Method `__setitem__` of type `Unknown | (bound method dict[str, Unknown | int].__setitem__(key: str, value: Unknown | int, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown], /) -> None])` cannot be called with a key of type `Literal["angle"]` and a value of type `Unknown` on object of type `Unknown | int | dict[str, Unknown | int] | list[Unknown] | float`
[error] invalid-assignment - :1076:13 - Method `__setitem__` of type `Unknown | (bound method dict[str, Unknown | int].__setitem__(key: str, value: Unknown | int, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown], /) -> None])` cannot be called with a key of type `Literal["verbose"]` and a value of type `Unknown` on object of type `Unknown | int | dict[str, Unknown | int] | list[Unknown] | float`
[error] invalid-assignment - :1079:13 - Method `__setitem__` of type `Unknown | (bound method dict[str, Unknown | int].__setitem__(key: str, value: Unknown | int, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown], /) -> None])` cannot be called with a key of type `Literal["num_threads"]` and a value of type `Unknown` on object of type `Unknown | int | dict[str, Unknown | int] | list[Unknown] | float`

sklearn/metrics/tests/test_classification.py

[warning] possibly-missing-attribute - :174:42 - Attribute `keys` on type `Unknown | dict[Unknown | str, Unknown | float | int] | float` may be missing
[error] not-iterable - :175:27 - Object of type `Unknown | dict[Unknown | str, Unknown | float | int] | float` may not be iterable
[error] non-subscriptable - :176:37 - Cannot subscript object of type `float` with no `__getitem__` method
[error] non-subscriptable - :178:23 - Cannot subscript object of type `float` with no `__getitem__` method
[error] non-subscriptable - :179:23 - Cannot subscript object of type `float` with no `__getitem__` method
[error] non-subscriptable - :180:23 - Cannot subscript object of type `float` with no `__getitem__` method
[error] non-subscriptable - :181:23 - Cannot subscript object of type `float` with no `__getitem__` method
[warning] possibly-missing-attribute - :209:42 - Attribute `keys` on type `Unknown | float | dict[Unknown | str, Unknown | int | float]` may be missing
[error] not-iterable - :210:27 - Object of type `Unknown | float | dict[Unknown | str, Unknown | int | float]` may not be iterable
[error] non-subscriptable - :211:37 - Cannot subscript object of type `float` with no `__getitem__` method

sklearn/metrics/tests/test_pairwise.py

[error] call-non-callable - :575:21 - Object of type `None` is not callable

sklearn/model_selection/tests/test_search.py

[warning] possibly-missing-attribute - :2613:14 - Attribute `C` on type `Unknown | LinearSVC | float` may be missing
[warning] possibly-missing-attribute - :2623:12 - Attribute `C` on type `Unknown | LinearSVC | float` may be missing

sklearn/tests/test_docstring_parameters.py

[error] invalid-argument-type - :283:17 -
Old: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[@Todo, @Todo], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[@Todo, @Todo]]]` cannot be called with key of type `tuple[None, EllipsisType]` on object of type `list[Unknown | dict[@Todo, @Todo]]`
New: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> Unknown | dict[Unknown | str, Unknown | int], (s: slice[Any, Any, Any], /) -> list[Unknown | dict[Unknown | str, Unknown | int]]]` cannot be called with key of type `tuple[None, EllipsisType]` on object of type `list[Unknown | dict[Unknown | str, Unknown | int]]`

sklearn/tests/test_metaestimators_metadata_routing.py

[warning] possibly-missing-attribute - :492:26 - Attribute `__name__` on type `Unknown | <class 'MultiOutputRegressor'> | str | list[Unknown | str] | <class 'MultiOutputClassifier'> | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | list[@Todo]]] | <class 'CalibratedClassifierCV'> | <class 'ClassifierChain'> | <class 'RegressorChain'> | <class 'LogisticRegressionCV'> | <class 'GridSearchCV'> | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | list[Unknown | float]]] | <class 'RandomizedSearchCV'> | <class 'HalvingGridSearchCV'> | <class 'HalvingRandomSearchCV'> | <class 'FixedThresholdClassifier'> | <class 'TunedThresholdClassifierCV'> | <class 'OneVsRestClassifier'> | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown]] | <class 'OneVsOneClassifier'> | <class 'OutputCodeClassifier'> | dict[Unknown | str, Unknown | int] | <class 'SelectFromModel'> | <class 'OrthogonalMatchingPursuitCV'> | <class 'ElasticNetCV'> | <class 'LassoCV'> | <class 'MultiTaskElasticNetCV'> | <class 'MultiTaskLassoCV'> | <class 'LarsCV'> | <class 'LassoLarsCV'> | <class 'RANSACRegressor'> | dict[Unknown | str, Unknown | float | int] | dict[Unknown | str, Unknown | list[Unknown | str]] | <class 'IterativeImputer'> | dict[Unknown | str, Unknown | bool] | <class 'BaggingClassifier'> | bool | list[Unknown | tuple[str, list[Unknown | str]] | str] | <class 'BaggingRegressor'> | <class 'RidgeCV'> | <class 'RidgeClassifierCV'> | <class 'GraphicalLassoCV'> | <class 'TransformedTargetRegressor'> | <class 'SelfTrainingClassifier'> | <class 'SequentialFeatureSelector'> | <class 'RFE'> | <class 'RFECV'>` may be missing

sklearn/tree/tests/test_tree.py

[warning] possibly-missing-attribute - :675:9 - Attribute `astype` on type `Unknown | list[Unknown | list[Unknown | int]] | list[Unknown | int] | list[Unknown | float | int]` may be missing
[warning] possibly-missing-attribute - :747:9 - Attribute `astype` on type `Unknown | list[Unknown | list[Unknown | int]] | list[Unknown | int] | list[Unknown | float | int]` may be missing
[warning] possibly-missing-attribute - :1335:21 - Attribute `shape` on type `Unknown | list[Unknown | list[Unknown | int]] | list[Unknown | int] | list[Unknown | float | int]` may be missing
[warning] possibly-missing-attribute - :1918:15 - Attribute `astype` on type `Unknown | list[Unknown | list[Unknown | int]] | list[Unknown | int] | list[Unknown | float | int]` may be missing

sklearn/utils/_testing.py

[warning] possibly-missing-implicit-call - :936:13 - Method `__setitem__` of type `Unknown | int | dict[str, str]` may be missing
[error] no-matching-overload - :941:23 - No overload of function `check_output` matches arguments
[error] unresolved-attribute - :947:19 - Type `str` has no attribute `decode`

sklearn/utils/estimator_checks.py

[error] invalid-argument-type - :683:51 - Argument to function `estimator_checks_generator` is incorrect: Expected `Literal["xfail", "skip"] | None`, found `Unknown | str | bool | None`
[error] invalid-argument-type - :683:51 - Argument to function `estimator_checks_generator` is incorrect: Expected `bool | None`, found `Unknown | str | bool | None`
[error] invalid-argument-type - :683:51 - Argument to function `estimator_checks_generator` is incorrect: Expected `bool`, found `Unknown | str | bool | None`
[error] invalid-argument-type - :683:51 - Argument to function `estimator_checks_generator` is incorrect: Expected `dict[str, str] | None`, found `Unknown | str | bool | None`
[error] invalid-argument-type - :937:55 - Argument to bound method `__init__` is incorrect: Expected `Exception`, found `Unknown | Exception | bool | str`
[error] invalid-argument-type - :937:55 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | Exception | bool | str`
[error] invalid-argument-type - :937:55 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | Exception | bool | str`
[error] invalid-argument-type - :937:55 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | Exception | bool | str`
[error] invalid-argument-type - :937:55 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | Exception | bool | str`

sklearn/utils/tests/test_multiclass.py

[warning] possibly-missing-attribute - :410:27 - Attribute `toarray` on type `(Unknown & SparseABC) | (list[Unknown | list[Unknown | int]] & SparseABC) | (_NotAnArray & SparseABC)` may be missing

scipy (https://github.com/scipy/scipy)

scipy/_lib/_bunch.py

[error] invalid-assignment - :183:9 - Object of type `str` is not assignable to attribute `__qualname__` on type `Unknown | ((self: type[tuple[Unknown, ...]], iterable: Iterable[Unknown] = tuple[()], /) -> Unknown) | dict[str, <class 'TypeError'> | <class 'AttributeError'>] | str | (def __repr__(self) -> Unknown) | (def _asdict(self) -> Unknown) | (def __getnewargs_ex__(self) -> Unknown)`
[warning] possibly-missing-attribute - :183:45 - Attribute `__name__` on type `Unknown | ((self: type[tuple[Unknown, ...]], iterable: Iterable[Unknown] = tuple[()], /) -> Unknown) | dict[str, <class 'TypeError'> | <class 'AttributeError'>] | str | (def __repr__(self) -> Unknown) | (def _asdict(self) -> Unknown) | (def __getnewargs_ex__(self) -> Unknown)` may be missing

scipy/_lib/cobyqa/cobyqa/main.py

[error] call-non-callable - :1019:43 - Object of type `float` is not callable
[error] call-non-callable - :1019:43 - Object of type `int` is not callable
[error] call-non-callable - :1029:17 - Object of type `float` is not callable
[error] call-non-callable - :1029:17 - Object of type `int` is not callable
[error] call-non-callable - :1039:9 - Object of type `float` is not callable
[error] call-non-callable - :1039:9 - Object of type `int` is not callable
[error] invalid-argument-type - :1505:26 - Argument to function `printoptions` is incorrect: Expected `SupportsIndex | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :1505:26 - Argument to function `printoptions` is incorrect: Expected `bool | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :1505:26 - Argument to function `printoptions` is incorrect: Expected `int | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :1505:26 - Argument to function `printoptions` is incorrect: Expected `int | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :1505:26 - Argument to function `printoptions` is incorrect: Expected `int | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :1505:26 - Argument to function `printoptions` is incorrect: Expected `str | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :1505:26 - Argument to function `printoptions` is incorrect: Expected `str | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`

scipy/_lib/cobyqa/cobyqa/problem.py

[error] invalid-argument-type - :75:38 - Argument to function `printoptions` is incorrect: Expected `SupportsIndex | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :75:38 - Argument to function `printoptions` is incorrect: Expected `bool | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :75:38 - Argument to function `printoptions` is incorrect: Expected `int | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :75:38 - Argument to function `printoptions` is incorrect: Expected `int | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :75:38 - Argument to function `printoptions` is incorrect: Expected `int | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :75:38 - Argument to function `printoptions` is incorrect: Expected `str | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :75:38 - Argument to function `printoptions` is incorrect: Expected `str | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :469:38 - Argument to function `printoptions` is incorrect: Expected `SupportsIndex | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :469:38 - Argument to function `printoptions` is incorrect: Expected `bool | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :469:38 - Argument to function `printoptions` is incorrect: Expected `int | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :469:38 - Argument to function `printoptions` is incorrect: Expected `int | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :469:38 - Argument to function `printoptions` is incorrect: Expected `int | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :469:38 - Argument to function `printoptions` is incorrect: Expected `str | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :469:38 - Argument to function `printoptions` is incorrect: Expected `str | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`

scipy/_lib/cobyqa/cobyqa/tests/test_problem.py

[error] invalid-argument-type - :63:30 - Argument to function `printoptions` is incorrect: Expected `SupportsIndex | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :63:30 - Argument to function `printoptions` is incorrect: Expected `bool | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :63:30 - Argument to function `printoptions` is incorrect: Expected `int | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :63:30 - Argument to function `printoptions` is incorrect: Expected `int | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :63:30 - Argument to function `printoptions` is incorrect: Expected `int | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :63:30 - Argument to function `printoptions` is incorrect: Expected `str | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :63:30 - Argument to function `printoptions` is incorrect: Expected `str | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :226:30 - Argument to function `printoptions` is incorrect: Expected `SupportsIndex | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :226:30 - Argument to function `printoptions` is incorrect: Expected `bool | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :226:30 - Argument to function `printoptions` is incorrect: Expected `int | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :226:30 - Argument to function `printoptions` is incorrect: Expected `int | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :226:30 - Argument to function `printoptions` is incorrect: Expected `int | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :226:30 - Argument to function `printoptions` is incorrect: Expected `str | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`
[error] invalid-argument-type - :226:30 - Argument to function `printoptions` is incorrect: Expected `str | None`, found `Unknown | int | dict[Unknown | str, Unknown | ((x) -> Unknown)]`

scipy/signal/_short_time_fft.py

[error] no-matching-overload - :1104:14 - No overload of function `pad` matches arguments

scipy/signal/tests/_scipy_spectral_test_shim.py

[error] call-non-callable - :95:13 - Object of type `None` is not callable
[error] invalid-argument-type - :121:23 - Argument to bound method `__init__` is incorrect: Expected `Literal["magnitude", "psd"] | None`, found `Unknown | str`

scipy/sparse/_base.py

[warning] possibly-missing-attribute - :676:55 - Attribute `__name__` on type `Unknown | ((a: object, b: object, /) -> Any) | ((a: @Todo, b: @Todo, /) -> Any)` may be missing

scipy/stats/_page_trend_test.py

[error] call-non-callable - :368:9 - Object of type `None` is not callable

scipy/stats/_sampling.py

[error] call-non-callable - :752:24 - Object of type `float` is not callable
[error] call-non-callable - :752:24 - Object of type `int` is not callable
[error] call-non-callable - :760:32 - Object of type `float` is not callable
[error] call-non-callable - :760:32 - Object of type `int` is not callable
[error] call-non-callable - :771:36 - Object of type `float` is not callable
[error] call-non-callable - :771:36 - Object of type `int` is not callable

scipy/stats/tests/common_tests.py

[error] no-matching-overload - :74:9 - No overload of function `assert_allclose` matches arguments

benchmarks/benchmarks/common.py

[warning] possibly-missing-attribute - :158:30 - Attribute `empty` on type `@Todo | ModuleType` may be missing

doc/source/conf.py

[error] invalid-assignment - :251:5 - Method `__setitem__` of type `Unknown | (Overload[(key: SupportsIndex, value: Unknown | dict[Unknown | str, Unknown | str], /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | dict[Unknown | str, Unknown | str]], /) -> None]) | (bound method dict[Unknown | str, Unknown | str].__setitem__(key: Unknown | str, value: Unknown | str, /) -> None) | (Overload[(key: SupportsIndex, value: Unknown | str, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown | str], /) -> None]) | (Overload[(key: SupportsIndex, value: Unknown, /) -> None, (key: slice[Any, Any, Any], value: Iterable[Unknown], /) -> None])` cannot be called with a key of type `Literal["version_match"]` and a value of type `Literal["development"]` on object of type `Unknown | int | list[Unknown | dict[Unknown | str, Unknown | str]] | dict[Unknown | str, Unknown | str] | list[Unknown | str] | list[Unknown]`

scipy/_build_utils/tempita/_tempita.py

[error] invalid-argument-type - :580:49 - Argument to function `escape` is incorrect: Argument type `@Todo | str | <class 'looper'>` does not satisfy constraints (`str`, `bytes`) of type variable `AnyStr`
[error] invalid-argument-type - :581:49 - Argument to function `escape` is incorrect: Argument type `@Todo | str | <class 'looper'>` does not satisfy constraints (`str`, `bytes`) of type variable `AnyStr`

scipy/_lib/_array_api_docs_tables.py

[error] invalid-assignment - :215:9 -
Old: Object of type `Unknown | dict[@Todo, @Todo]` is not assignable to `list[str] | None`
New: Object of type `Unknown | dict[Unknown, Unknown]` is not assignable to `list[str] | None`

scipy/fftpack/tests/gen_fftw_ref.py

[error] invalid-argument-type - :43:20 - Argument to function `savez` is incorrect: Expected `bool`, found `Unknown | list[Unknown | int]`
[error] invalid-argument-type - :59:20 - Argument to function `savez` is incorrect: Expected `bool`, found `Unknown | list[Unknown | int]`
[error] invalid-argument-type - :74:20 - Argument to function `savez` is incorrect: Expected `bool`, found `Unknown | list[Unknown | int]`

scipy/integrate/_quad_vec.py

[warning] possibly-missing-attribute - :341:18 - Attribute `num_eval` on type `Unknown | ((a, b, f, norm_func) -> Unknown) | ((x1, x2, f, norm_func) -> Unknown)` may be missing
[error] invalid-argument-type - :383:48 -
Old: Argument to function `abs` is incorrect: Expected `SupportsAbs[Unknown]`, found `None | @Todo`
New: Argument to function `abs` is incorrect: Expected `SupportsAbs[Unknown]`, found `None | Unknown`
[error] no-matching-overload - :383:38 - No overload matches arguments
[error] unsupported-operator - :392:40 -
Old: Operator `-` is unsupported between objects of type `None | float` and `Unknown | int | float`
New: Operator `-` is unsupported between objects of type `None | float` and `Unknown | int | float | floating[Any]`
[error] invalid-argument-type - :419:52 -
Old: Argument to function `abs` is incorrect: Expected `SupportsAbs[Unknown]`, found `None | @Todo`
New: Argument to function `abs` is incorrect: Expected `SupportsAbs[Unknown]`, found `None | Unknown`
[error] no-matching-overload - :419:42 - No overload matches arguments
[error] unsupported-operator - :420:20 -
Old: Operator `<` is not supported for types `None` and `int`, in comparing `None | float | Unknown` with `Unknown | int | float`
New: Operator `<` is not supported for types `None` and `int`, in comparing `None | float | Unknown` with `Unknown | int | float | floating[Any]`

scipy/interpolate/_fitpack_impl.py

[error] unsupported-operator - :195:17 - Operator `+` is unsupported between objects of type `Unknown | str | None | <class 'ValueError'> | <class 'TypeError'>` and `str`
[error] call-non-callable - :204:23 - Object of type `None` is not callable
[error] call-non-callable - :204:23 - Object of type `str` is not callable
[error] call-non-callable - :206:23 - Object of type `None` is not callable
[error] call-non-callable - :206:23 - Object of type `str` is not callable
[error] unsupported-operator - :288:18 - Operator `+` is unsupported between objects of type `Unknown | str | None | <class 'ValueError'> | <class 'TypeError'>` and `str`
[error] call-non-callable - :295:23 - Object of type `None` is not callable
[error] call-non-callable - :295:23 - Object of type `str` is not callable
[error] call-non-callable - :297:23 - Object of type `None` is not callable
[error] call-non-callable - :297:23 - Object of type `str` is not callable
[error] unsupported-operator - :596:13 - Operator `+` is unsupported between objects of type `Unknown | str | None | <class 'ValueError'> | <class 'TypeError'>` and `str`
[error] unsupported-operator - :605:42 - Operator `+` is unsupported between objects of type `Unknown | str | None | <class 'ValueError'> | <class 'TypeError'>` and `str`
[error] call-non-callable - :608:23 - Object of type `None` is not callable
[error] call-non-callable - :608:23 - Object of type `str` is not callable
[error] call-non-callable - :610:23 - Object of type `None` is not callable
[error] call-non-callable - :610:23 - Object of type `str` is not callable
[error] invalid-argument-type - :158:13 - Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | int`

scipy/ndimage/tests/test_measurements.py

[error] no-matching-overload - :46:37 - No overload of function `asarray` matches arguments
[error] no-matching-overload - :62:37 - No overload of function `asarray` matches arguments
[error] no-matching-overload - :76:37 - No overload of function `asarray` matches arguments
[error] no-matching-overload - :91:37 - No overload of function `asarray` matches arguments
[error] no-matching-overload - :106:37 - No overload of function `asarray` matches arguments

scipy/optimize/_minpack_py.py

[error] no-matching-overload - :504:13 - No overload of function `warn` matches arguments
[error] call-non-callable - :506:19 - Object of type `None` is not callable
[error] call-non-callable - :506:19 - Object of type `str` is not callable

scipy/optimize/_shgo.py

[warning] possibly-missing-implicit-call - :517:17 -
Old: Method `__setitem__` of type `(Unknown & ~Top[dict[Unknown, Unknown]]) | None | @Todo | dict[@Todo, @Todo]` may be missing
New: Method `__setitem__` of type `(Unknown & ~Top[dict[Unknown, Unknown]]) | None | @Todo | dict[Unknown, Unknown]` may be missing

scipy/optimize/tests/test__shgo.py

[warning] possibly-missing-attribute - :1227:12 - Attribute `lower` on type `Unknown | str | dict[Unknown, Unknown]` may be missing
[error] invalid-argument-type - :1228:12 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["catol"]` on object of type `str`

scipy/optimize/tests/test_optimize.py

[error] invalid-argument-type - :1697:40 - Argument to function `len` is incorrect: Expected `Sized`, found `Unknown | list[Unknown | float] | ((x) -> Unknown)`

scipy/signal/_filter_design.py

[error] too-many-positional-arguments - :2660:25 - Too many positional arguments: expected 1, got 4
[error] too-many-positional-arguments - :2660:29 - Too many positional arguments: expected 2, got 4
[error] too-many-positional-arguments - :2660:29 - Too many positional arguments: expected 2, got 4
[error] too-many-positional-arguments - :2660:29 - Too many positional arguments: expected 2, got 4
[error] too-many-positional-arguments - :2660:36 - Too many positional arguments: expected 3, got 4
[error] unknown-argument - :2660:43 - Argument `analog` does not match any known parameter
[error] unknown-argument - :2660:43 - Argument `analog` does not match any known parameter
[error] unknown-argument - :2660:43 - Argument `analog` does not match any known parameter
[error] unknown-argument - :2660:43 - Argument `analog` does not match any known parameter
[error] unknown-argument - :2660:43 - Argument `analog` does not match any known parameter
[error] unknown-argument - :2660:58 - Argument `fs` does not match any known parameter
[error] unknown-argument - :2660:58 - Argument `fs` does not match any known parameter
[error] unknown-argument - :2660:58 - Argument `fs` does not match any known parameter
[error] unknown-argument - :2660:58 - Argument `fs` does not match any known parameter
[error] unknown-argument - :2660:58 - Argument `fs` does not match any known parameter
[error] missing-argument - :2836:19 - No argument provided for required parameter `rp`
[error] missing-argument - :2836:19 - No argument provided for required parameter `rs`
[error] missing-argument - :2836:19 - No arguments provided for required parameters `rp`, `rs`
[error] missing-argument - :2836:19 - No arguments provided for required parameters `ws`, `gpass`, `gstop`
[error] unknown-argument - :2836:31 - Argument `xp` does not match any known parameter

scipy/signal/_spectral_py.py

[error] invalid-argument-type - :915:24 - Argument to bound method `__init__` is incorrect: Expected `Literal["magnitude", "psd"] | None`, found `Unknown | str`
[error] call-non-callable - :2222:13 - Object of type `None` is not callable
[error] call-non-callable - :2224:17 - Object of type `None` is not callable

scipy/signal/tests/test_windows.py

[warning] possibly-missing-attribute - :798:25 - Attribute `__name__` on type `Unknown | ((M, sym=bool, *, xp=None, device=None) -> Unknown) | ((M, at, sym=bool, *, xp=None, device=None) -> Unknown) | ((M, NW, Kmax=None, sym=bool, norm=None, return_ratios=bool, *, xp=None, device=None) -> Unknown) | ((M, center=None, tau=float, sym=bool, *, xp=None, device=None) -> Unknown) | ((M, std, sym=bool, *, xp=None, device=None) -> Unknown) | ((M, a, sym=bool) -> Unknown) | ((M, p, sig, sym=bool, *, xp=None, device=None) -> Unknown) | ((M, alpha, sym=bool, *, xp=None, device=None) -> Unknown) | ((M, beta, sym=bool, *, xp=None, device=None) -> Unknown) | ((M, beta, *, sym=bool, xp=None, device=None) -> Unknown) | ((M, *, sym=bool, xp=None, device=None) -> Unknown) | ((M, nbar=int, sll=int, norm=bool, sym=bool, *, xp=None, device=None) -> Unknown) | ((M, alpha=float, sym=bool, *, xp=None, device=None) -> Unknown)` may be missing

scipy/sparse/linalg/_expm_multiply.py

[error] no-matching-overload - :678:21 - No overload of function `linspace` matches arguments

scipy/sparse/linalg/tests/test_expm_multiply.py

[error] no-matching-overload - :225:23 - No overload of function `linspace` matches arguments
[error] no-matching-overload - :252:23 - No overload of function `linspace` matches arguments
[error] no-matching-overload - :363:15 - No overload of function `linspace` matches arguments

scipy/special/_support_alternative_backends.py

[error] invalid-argument-type - :345:9 - Argument is incorrect: Expected `bool | tuple[bool] | dict[str, tuple[bool]]`, found `dict[Unknown | str, Unknown | bool]`
[error] invalid-argument-type - :382:15 - Argument is incorrect: Expected `bool | tuple[bool] | dict[str, tuple[bool]]`, found `dict[Unknown | str, Unknown | bool]`
[error] invalid-argument-type - :523:9 - Argument is incorrect: Expected `bool | tuple[bool] | dict[str, tuple[bool]]`, found `dict[Unknown | str, Unknown | bool]`
[error] invalid-argument-type - :574:9 - Argument is incorrect: Expected `bool | tuple[bool] | dict[str, tuple[bool]]`, found `dict[Unknown | str, Unknown | bool]`
[error] invalid-argument-type - :681:9 - Argument is incorrect: Expected `dict[str, tuple[bool]] | tuple[bool] | None`, found `dict[Unknown | str, Unknown | list[Unknown | bool]]`
[error] invalid-argument-type - :686:9 - Argument is incorrect: Expected `dict[str, tuple[bool]] | tuple[bool] | None`, found `dict[Unknown | str, Unknown | list[Unknown | bool]]`
[error] invalid-argument-type - :764:15 - Argument is incorrect: Expected `dict[str, tuple[bool]] | tuple[bool] | None`, found `dict[Unknown | str, Unknown | tuple[bool, bool]]`
[error] invalid-argument-type - :765:15 - Argument is incorrect: Expected `bool | tuple[bool] | dict[str, tuple[bool]]`, found `dict[Unknown | str, Unknown | tuple[bool, bool] | bool]`
[error] invalid-argument-type - :854:9 - Argument is incorrect: Expected `bool | tuple[bool] | dict[str, tuple[bool]]`, found `dict[Unknown | str, Unknown | bool | tuple[bool, bool]]`
[error] invalid-argument-type - :849:9 - Argument is incorrect: Expected `bool | tuple[bool] | dict[str, tuple[bool]]`, found `dict[Unknown | str, Unknown | tuple[bool, bool]]`

scipy/stats/_qmc.py

[error] invalid-argument-type - :2609:26 - Method `__getitem__` of type `bound method dict[str, ((...) -> Unknown) | ((best_sample: ndarray[@Todo, Unknown], n_iters: int, n_nochange: int, rng: GeneratorType@_random_cd, **kwargs: dict[Unknown, Unknown]) -> ndarray[@Todo, Unknown]) | ((sample: @Todo, *, tol: Unknown = float, maxiter: Unknown = int, qhull_options: str | None = None, **kwargs: dict[Unknown, Unknown]) -> ndarray[@Todo, Unknown])].__getitem__(key: str, /) -> ((...) -> Unknown) | ((best_sample: ndarray[@Todo, Unknown], n_iters: int, n_nochange: int, rng: GeneratorType@_random_cd, **kwargs: dict[Unknown, Unknown]) -> ndarray[@Todo, Unknown]) | ((sample: @Todo, *, tol: Unknown = float, maxiter: Unknown = int, qhull_options: str | None = None, **kwargs: dict[Unknown, Unknown]) -> ndarray[@Todo, Unknown])` cannot be called with key of type `Literal["random-cd", "lloyd"] | None` on object of type `dict[str, ((...) -> Unknown) | ((best_sample: ndarray[@Todo, Unknown], n_iters: int, n_nochange: int, rng: GeneratorType@_random_cd, **kwargs: dict[Unknown, Unknown]) -> ndarray[@Todo, Unknown]) | ((sample: @Todo, *, tol: Unknown = float, maxiter: Unknown = int, qhull_options: str | None = None, **kwargs: dict[Unknown, Unknown]) -> ndarray[@Todo, Unknown])]`

scipy/stats/tests/test_continuous.py

[error] no-matching-overload - :478:13 - No overload of function `assert_allclose` matches arguments
[error] no-matching-overload - :481:13 - No overload of function `assert_allclose` matches arguments

scrapy (https://github.com/scrapy/scrapy)

tests/test_responsetypes.py

[error] invalid-argument-type - :119:46 - Argument to bound method `from_args` is incorrect: Expected `Mapping[bytes, bytes] | None`, found `Unknown | str | Headers`
[error] invalid-argument-type - :119:46 - Argument to bound method `from_args` is incorrect: Expected `bytes | None`, found `Unknown | str | Headers`
[error] invalid-argument-type - :119:46 - Argument to bound method `from_args` is incorrect: Expected `str | None`, found `Unknown | str | Headers`
[error] invalid-argument-type - :119:46 - Argument to bound method `from_args` is incorrect: Expected `str | None`, found `Unknown | str | Headers`

tests/test_downloadermiddleware_httpcompression.py

[error] invalid-argument-type - :405:49 - Argument to bound method `from_args` is incorrect: Expected `Mapping[bytes, bytes] | None`, found `dict[Unknown | str, Unknown | str]`

tests/test_downloadermiddleware_httpproxy.py

[error] invalid-assignment - :27:9 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to attribute `environ` of type `_Environ[str]`
New: Object of type `dict[Unknown | str, Unknown | str]` is not assignable to attribute `environ` of type `_Environ[str]`

tests/test_downloadermiddleware_offsite.py

[error] invalid-argument-type - :90:44 - Argument to bound method `__init__` is incorrect: Expected `((Unknown, /) -> Any) | None`, found `Unknown | dict[Unknown, Unknown]`
[error] invalid-argument-type - :90:44 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | dict[Unknown, Unknown]`
[error] invalid-argument-type - :90:44 - Argument to bound method `__init__` is incorrect: Expected `bytes | str | None`, found `Unknown | dict[Unknown, Unknown]`
[error] invalid-argument-type - :90:44 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | dict[Unknown, Unknown]`
[error] invalid-argument-type - :90:44 - Argument to bound method `__init__` is incorrect: Expected `list[str] | None`, found `Unknown | dict[Unknown, Unknown]`
[error] invalid-argument-type - :90:44 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | dict[Unknown, Unknown]`
[error] invalid-argument-type - :90:44 - Argument to bound method `__init__` is incorrect: Expected `str`, found `Unknown | dict[Unknown, Unknown]`

tests/test_downloaderslotssettings.py

[error] invalid-argument-type - :99:21 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | int`

tests/test_feedexport.py

[error] invalid-argument-type - :1780:25 - Method `__getitem__` of type `Overload[(key: SupportsIndex, /) -> int, (key: slice[Any, Any, Any], /) -> bytes]` cannot be called with key of type `Literal["format"]` on object of type `bytes`
[error] invalid-argument-type - :238:77 -
Old: Argument to bound method `__init__` is incorrect: Expected `bool`, found `dict[@Todo, @Todo]`
New: Argument to bound method `__init__` is incorrect: Expected `bool`, found `dict[Unknown, Unknown]`

tests/test_http2_client_protocol.py

[warning] possibly-missing-implicit-call - :114:13 - Method `__setitem__` of type `Unknown | dict[Unknown, Unknown] | str` may be missing

tests/test_utils_misc/__init__.py

[error] invalid-argument-type - :39:25 -
Old: Argument to function `load_object` is incorrect: Expected `str | ((...) -> Any)`, found `dict[@Todo, @Todo]`
New: Argument to function `load_object` is incorrect: Expected `str | ((...) -> Any)`, found `dict[Unknown, Unknown]`

setuptools (https://github.com/pypa/setuptools)

setuptools/config/_apply_pyprojecttoml.py

[error] invalid-argument-type - :124:31 - Argument to function `_set_config` is incorrect: Expected `str`, found `(Unknown & ~((...) -> object)) | (partial[Unknown] & ~((...) -> object))`

setuptools/tests/config/test_expand.py

[error] invalid-argument-type - :243:46 - Argument to function `find_packages` is incorrect: Expected `dict[str, str] | None`, found `Unknown | dict[Unknown, Unknown] | bool`

setuptools/tests/test_dist_info.py

[error] no-matching-overload - :143:12 - No overload of function `run` matches arguments

setuptools/tests/test_warnings.py

[error] invalid-argument-type - :72:32 - Argument to bound method `emit` is incorrect: Expected `int`, found `Unknown | str`
[error] invalid-argument-type - :72:39 - Argument expression after ** must be a mapping type: Found `Unknown | tuple[str, str] | dict[Unknown | str, Unknown | int | str] | str | dict[Unknown | str, Unknown | tuple[int, int, int]] | dict[Unknown | str, Unknown | tuple[int, int, int] | str]`
[error] invalid-argument-type - :73:48 - Argument to function `cleandoc` is incorrect: Expected `str`, found `Unknown | tuple[str, str] | dict[Unknown | str, Unknown | int | str] | str | dict[Unknown | str, Unknown | tuple[int, int, int]] | dict[Unknown | str, Unknown | tuple[int, int, int] | str]`

setuptools/_static.py

[warning] unused-ignore-comment - :170:56 - Unused blanket `type: ignore` directive

setuptools/_distutils/archive_util.py

[error] invalid-argument-type - :288:25 - Argument is incorrect: Expected `str`, found `str | PathLike[str] | Unknown`
[error] invalid-argument-type - :288:25 - Argument is incorrect: Expected `str`, found `str | PathLike[str] | Unknown`
[error] invalid-argument-type - :288:46 - Argument is incorrect: Expected `str | None`, found `Unknown | bool`
[error] invalid-argument-type - :288:46 - Argument is incorrect: Expected `str | None`, found `Unknown | bool`
[error] invalid-argument-type - :288:46 - Argument is incorrect: Expected `str | None`, found `Unknown | bool`

setuptools/_distutils/tests/test_build_ext.py

[warning] possibly-missing-attribute - :380:16 -
Old: Attribute `undef_macros` on type `Unknown | tuple[str, dict[@Todo, @Todo]]` may be missing
New: Attribute `undef_macros` on type `Unknown | tuple[str, dict[Unknown | str, Unknown | list[Unknown | str] | str | list[Unknown | tuple[str, str, str] | str]]]` may be missing
[warning] possibly-missing-attribute - :381:16 -
Old: Attribute `define_macros` on type `Unknown | tuple[str, dict[@Todo, @Todo]]` may be missing
New: Attribute `define_macros` on type `Unknown | tuple[str, dict[Unknown | str, Unknown | list[Unknown | str] | str | list[Unknown | tuple[str, str, str] | str]]]` may be missing

setuptools/_vendor/backports/tarfile/__init__.py

[warning] possibly-missing-attribute - :999:44 - Attribute `endswith` on type `Unknown | None` may be missing
[error] unsupported-operator - :1000:13 - Operator `+=` is unsupported between objects of type `None` and `Literal["/"]`
[warning] possibly-missing-attribute - :1573:29 -
Old: Attribute `rstrip` on type `Unknown | Literal[0]` may be missing
New: Attribute `rstrip` on type `Unknown | float | int` may be missing

setuptools/_vendor/inflect/__init__.py

[warning] unused-ignore-comment - :1698:50 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :1701:50 - Unused blanket `type: ignore` directive

setuptools/tests/config/test_pyprojecttoml.py

[error] invalid-argument-type - :369:53 -
Old: Argument to function `run_setup` is incorrect: Expected `list[str] | None`, found `dict[@Todo, @Todo]`
New: Argument to function `run_setup` is incorrect: Expected `list[str] | None`, found `dict[Unknown, Unknown]`

setuptools/tests/environment.py

[error] no-matching-overload - :34:16 - No overload of function `check_output` matches arguments

setuptools/tests/test_config_discovery.py

[error] invalid-argument-type - :624:54 -
Old: Argument to function `run_setup` is incorrect: Expected `list[str] | None`, found `dict[@Todo, @Todo]`
New: Argument to function `run_setup` is incorrect: Expected `list[str] | None`, found `dict[Unknown, Unknown]`

setuptools/tests/test_editable_install.py

[error] invalid-argument-type - :884:28 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["mod1.py"]` on object of type `str`
[error] invalid-argument-type - :886:22 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["subpackage"]` on object of type `str`
[error] invalid-argument-type - :894:32 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["mod1.py"]` on object of type `str`
[error] invalid-argument-type - :895:35 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["subpackage"]` on object of type `str`
[error] unsupported-operator - :956:5 - Operator `+=` is unsupported between objects of type `dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str] | str]]` and `str`
[error] unsupported-operator - :956:5 - Operator `+=` is unsupported between objects of type `dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str]]` and `str`
[error] unsupported-operator - :956:5 - Operator `+=` is unsupported between objects of type `dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str]] | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str]]]` and `str`
[error] unsupported-operator - :956:5 - Operator `+=` is unsupported between objects of type `dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str]]` and `str`
[error] unsupported-operator - :956:5 - Operator `+=` is unsupported between objects of type `dict[Unknown | str, Unknown | str]` and `str`
[error] invalid-argument-type - :969:5 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["mypkg"]` on object of type `str`
[warning] possibly-missing-implicit-call - :969:5 - Method `__setitem__` of type `Unknown | dict[Unknown | str, Unknown | str] | str | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str]] | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | str]]` may be missing

setuptools/tests/test_wheel.py

[error] invalid-argument-type - :677:13 -
Old: Argument expression after ** must be a mapping type: Found `str | dict[@Todo, @Todo] | dict[str, list[Unknown | str]] | Unknown`
New: Argument expression after ** must be a mapping type: Found `str | dict[Unknown | str, Unknown] | dict[str, list[Unknown | str]] | Unknown`

sockeye (https://github.com/awslabs/sockeye)

sockeye/log.py

[warning] unused-ignore-comment - :128:64 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :130:63 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :133:76 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :134:69 - Unused blanket `type: ignore` directive

sockeye/test_utils.py

[error] invalid-argument-type - :224:34 -
Old: Argument to function `generate_json_input_file_with_tgt_prefix` is incorrect: Expected `list[str]`, found `None | @Todo | list[Unknown]`
New: Argument to function `generate_json_input_file_with_tgt_prefix` is incorrect: Expected `list[str]`, found `None | Unknown | str | list[Unknown]`
[error] invalid-argument-type - :224:13 - Argument to function `generate_json_input_file_with_tgt_prefix` is incorrect: Expected `list[str] | None`, found `None | Unknown | str | list[Unknown]`

spack (https://github.com/spack/spack)

lib/spack/spack/bootstrap/core.py

[error] invalid-assignment - :225:17 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to `QueryInfo`
New: Object of type `dict[Unknown, Unknown]` is not assignable to `QueryInfo`
[error] invalid-assignment - :233:18 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to `QueryInfo`
New: Object of type `dict[Unknown, Unknown]` is not assignable to `QueryInfo`
[error] invalid-assignment - :246:18 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to `QueryInfo`
New: Object of type `dict[Unknown, Unknown]` is not assignable to `QueryInfo`
[error] invalid-assignment - :267:9 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to `QueryInfo`
New: Object of type `dict[Unknown, Unknown]` is not assignable to `QueryInfo`
[error] invalid-assignment - :307:9 -
Old: Object of type `dict[@Todo, @Todo]` is not assignable to `QueryInfo`
New: Object of type `dict[Unknown, Unknown]` is not assignable to `QueryInfo`

lib/spack/spack/ci/gitlab.py

[error] invalid-argument-type - :408:61 - Argument to function `ensure_expected_target_path` is incorrect: Expected `str`, found `Unknown | str | bytes | (Unknown & ~AlwaysFalsy)`

lib/spack/spack/operating_systems/windows_os.py

[warning] unused-ignore-comment - :52:51 - Unused blanket `type: ignore` directive

lib/spack/spack/solver/requirements.py

[error] invalid-argument-type - :207:52 - Argument to function `parse_spec_from_yaml_string` is incorrect: Expected `str`, found `(Unknown & ~AlwaysFalsy) | (list[Unknown | (Unknown & str)] & ~AlwaysFalsy)`
[error] invalid-argument-type - :223:25 - Argument is incorrect: Expected `str | None`, found `Unknown | list[Unknown | (Unknown & str)] | None`

lib/spack/spack/test/ci.py

[error] invalid-argument-type - :228:60 -
Old: Argument to bound method `__init__` is incorrect: Expected `Message[str, str]`, found `dict[@Todo, @Todo]`
New: Argument to bound method `__init__` is incorrect: Expected `Message[str, str]`, found `dict[Unknown, Unknown]`

lib/spack/spack/util/spack_json.py

[warning] unused-ignore-comment - :26:53 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :27:49 - Unused blanket `type: ignore` directive

lib/spack/spack/vendor/jinja2/environment.py

[error] invalid-argument-type - :1114:25 -
Old: Argument to bound method `__init__` is incorrect: Expected `MutableMapping[Unknown, Unknown]`, found `Mapping[str, Any] | dict[@Todo, @Todo]`
New: Argument to bound method `__init__` is incorrect: Expected `MutableMapping[Unknown, Unknown]`, found `Mapping[str, Any] | dict[Unknown, Unknown]`

share/spack/qa/flake8_formatter.py

[warning] possibly-missing-attribute - :62:16 - Attribute `search` on type `Unknown | str` may be missing

sphinx (https://github.com/sphinx-doc/sphinx)

sphinx/ext/apidoc/_cli.py

[warning] possibly-missing-attribute - :346:9 - Attribute `extend` on type `Any | str | int | list[Unknown | str]` may be missing
[error] non-subscriptable - :350:16 - Cannot subscript object of type `int` with no `__getitem__` method
[warning] possibly-missing-attribute - :352:13 - Attribute `remove` on type `Any | str | int | list[Unknown | str]` may be missing
[warning] possibly-missing-attribute - :353:13 - Attribute `extend` on type `Any | str | int | list[Unknown | str]` may be missing

sphinx/cmd/quickstart.py

[warning] unused-ignore-comment - :805:46 - Unused blanket `type: ignore` directive

sphinx/environment/__init__.py

[error] invalid-assignment - :94:1 - Object of type `dict[Unknown | str, Unknown | bool | ((node: Node) -> bool)]` is not assignable to `dict[str, Literal[False] | ((Node, /) -> bool)]`

sphinx/environment/collectors/toctree.py

[error] unresolved-attribute - :172:41 - Type `Node` has no attribute `append`

starlette (https://github.com/encode/starlette)

starlette/middleware/wsgi.py

[error] unsupported-operator - :69:21 - Operator `+` is unsupported between objects of type `Unknown | str | tuple[int, int] | BytesIO | TextIO | bool` and `Literal[","]`

starlette/testclient.py

[warning] possibly-missing-attribute - :365:49 - Attribute `read` on type `Unknown | int | list[Unknown] | BytesIO` may be missing

static-frame (https://github.com/static-frame/static-frame)

static_frame/__main__.py

[warning] possibly-missing-attribute - :32:46 - Attribute `__version__` on type `Unknown | ModuleType` may be missing

strawberry (https://github.com/strawberry-graphql/strawberry)

strawberry/field_extensions/input_mutation.py

[warning] possibly-missing-implicit-call - :45:13 - Method `__setitem__` of type `Any | str | dict[Unknown, Unknown]` may be missing
[error] invalid-argument-type - :59:17 - Argument to bound method `__init__` is incorrect: Expected `str | None`, found `Any | str | dict[Unknown, Unknown]`

strawberry/experimental/pydantic/object_type.py

[warning] unused-ignore-comment - :258:24 - Unused blanket `type: ignore` directive

streamlit (https://github.com/streamlit/streamlit)

lib/streamlit/web/cli.py

[warning] unused-ignore-comment - :108:37 - Unused blanket `type: ignore` directive

lib/streamlit/elements/widgets/data_editor.py

[warning] possibly-missing-attribute - :174:35 - Attribute `items` on type `Unknown | dict[Unknown, Unknown] | list[Unknown]` may be missing

lib/streamlit/elements/widgets/slider.py

[error] unsupported-operator - :805:19 - Operator `-` is unsupported between objects of type `(Any & ~None) | Any | int | str | float | time | timedelta` and `(Any & ~None) | Any | int | str | float | time | timedelta`

sympy (https://github.com/sympy/sympy)

sympy/assumptions/lra_satask.py

[error] call-non-callable - :189:16 - Object of type `Literal[True]` is not callable

sympy/core/tests/test_var.py

[warning] possibly-missing-attribute - :50:12 - Attribute `is_real` on type `Unknown | ((names, **args) -> Unknown)` may be missing
[warning] possibly-missing-attribute - :50:32 - Attribute `is_real` on type `Unknown | ((names, **args) -> Unknown)` may be missing

sympy/printing/pretty/pretty_symbology.py

[error] index-out-of-bounds - :356:19 - Index 2 is out of bounds for tuple `tuple[tuple[Unknown, Unknown, Unknown, Unknown], str]` with length 2
[error] index-out-of-bounds - :356:19 - Index 2 is out of bounds for tuple `tuple[tuple[Unknown, Unknown, Unknown], Unknown]` with length 2
[error] index-out-of-bounds - :356:19 - Index 2 is out of bounds for tuple `tuple[tuple[Unknown, Unknown, Unknown], str]` with length 2
[error] index-out-of-bounds - :356:19 - Index 2 is out of bounds for tuple `tuple[tuple[Unknown, str, Unknown, Unknown], Unknown]` with length 2
[error] index-out-of-bounds - :356:19 - Index 2 is out of bounds for tuple `tuple[tuple[str, str, str, str], str]` with length 2
[error] index-out-of-bounds - :356:19 - Index 2 is out of bounds for tuple `tuple[tuple[str, str, str], str]` with length 2
[error] index-out-of-bounds - :357:19 - Index 3 is out of bounds for tuple `tuple[Unknown, Unknown, Unknown]` with length 3
[error] index-out-of-bounds - :357:19 - Index 3 is out of bounds for tuple `tuple[str, str, str]` with length 3
[error] index-out-of-bounds - :357:19 - Index 3 is out of bounds for tuple `tuple[tuple[Unknown, Unknown, Unknown, Unknown], str]` with length 2
[error] index-out-of-bounds - :357:19 - Index 3 is out of bounds for tuple `tuple[tuple[Unknown, Unknown, Unknown], Unknown]` with length 2
[error] index-out-of-bounds - :357:19 - Index 3 is out of bounds for tuple `tuple[tuple[Unknown, Unknown, Unknown], str]` with length 2
[error] index-out-of-bounds - :357:19 - Index 3 is out of bounds for tuple `tuple[tuple[Unknown, str, Unknown, Unknown], Unknown]` with length 2
[error] index-out-of-bounds - :357:19 - Index 3 is out of bounds for tuple `tuple[tuple[str, str, str, str], str]` with length 2
[error] index-out-of-bounds - :357:19 - Index 3 is out of bounds for tuple `tuple[tuple[str, str, str], str]` with length 2

sympy/assumptions/cnf.py

[warning] possibly-missing-attribute - :401:30 -
Old: Attribute `keys` on type `Unknown | None | dict[@Todo, @Todo]` may be missing
New: Attribute `keys` on type `Unknown | None | dict[Unknown, Unknown]` may be missing

sympy/codegen/tests/test_algorithms.py

[error] unsupported-operator - :177:19 - Operator `*` is unsupported between objects of type `Float` and `Unknown | float`

sympy/combinatorics/tests/test_permutations.py

[error] unsupported-operator - :439:31 -
Old: Operator `*` is unsupported between objects of type `Cycle` and `dict[@Todo, @Todo]`
New: Operator `*` is unsupported between objects of type `Cycle` and `dict[Unknown, Unknown]`

sympy/core/add.py

[warning] unused-ignore-comment - :347:59 - Unused blanket `type: ignore` directive

sympy/core/evalf.py

[error] invalid-assignment - :1410:5 - Object of type `dict[Unknown | <class 'Symbol'> | <class 'Dummy'> | <class 'Float'> | <class 'Rational'> | <class 'Integer'> | <class 'Zero'> | <class 'One'> | <class 'Half'> | <class 'Pi'> | <class 'Exp1'> | <class 'ImaginaryUnit'> | <class 'NegativeOne'> | <class 'ComplexInfinity'> | <class 'NaN'> | <class 'exp'> | <class 'cos'> | <class 'sin'> | <class 'tan'> | <class 'Add'> | <class 'Mul'> | <class 'Pow'> | <class 'log'> | <class 'atan'> | <class 'Abs'> | <class 're'> | <class 'im'> | <class 'floor'> | <class 'ceiling'> | <class 'Integral'> | <class 'Sum'> | <class 'Product'> | <class 'Piecewise'> | <class 'AlgebraicNumber'>, Unknown | ((x: Expr, prec: int, options: dict[str, Any]) -> Any) | ((expr: Float, prec: int, options: dict[str, Any]) -> Any) | ((expr: Rational, prec: int, options: dict[str, Any]) -> Any) | ((expr: Integer, prec: int, options: dict[str, Any]) -> Any) | ((x, prec, options) -> Unknown) | ((expr: exp, prec: int, options: dict[str, Any]) -> Any) | ((v: Expr, prec: int, options: dict[str, Any]) -> Any) | ((v: Add, prec: int, options: dict[str, Any]) -> Any) | ((v: Mul, prec: int, options: dict[str, Any]) -> Any) | ((v: Pow, prec: int, options) -> Any) | ((expr: log, prec: int, options: dict[str, Any]) -> Any) | ((v: atan, prec: int, options: dict[str, Any]) -> Any) | ((expr: Abs, prec: int, options: dict[str, Any]) -> Any) | ((expr: re, prec: int, options: dict[str, Any]) -> Any) | ((expr: im, prec: int, options: dict[str, Any]) -> Any) | ((expr: floor, prec: int, options: dict[str, Any]) -> Any) | ((expr: ceiling, prec: int, options: dict[str, Any]) -> Any) | ((expr: Integral, prec: int, options: dict[str, Any]) -> Any) | ((expr: Sum, prec: int, options: dict[str, Any]) -> Any) | ((expr: Product, prec: int, options: dict[str, Any]) -> Any) | ((expr: Expr, prec: int, options: dict[str, Any]) -> Any) | ((a: AlgebraicNumber, prec: int, options: dict[str, Any]) -> Any)]` is not assignable to `dict[type[Expr], (Expr, int, dict[str, Any], /) -> Any]`

sympy/holonomic/holonomic.py

[error] not-iterable - :681:18 -
Old: Object of type `None | dict[@Todo, @Todo] | Unknown` may not be iterable
New: Object of type `None | dict[Unknown | Zero, Unknown | list[@Todo]] | Unknown` may not be iterable
[error] unsupported-operator - :684:16 -
Old: Operator `in` is not supported for types `@Todo` and `None`, in comparing `@Todo` with `None | Unknown | dict[@Todo, @Todo]`
New: Operator `in` is not supported for types `Unknown` and `None`, in comparing `Unknown | Zero | list[@Todo]` with `None | Unknown | dict[Unknown | Zero, Unknown | list[@Todo]]`
[error] not-iterable - :688:18 -
Old: Object of type `None | Unknown | dict[@Todo, @Todo]` may not be iterable
New: Object of type `None | Unknown | dict[Unknown | Zero, Unknown | list[@Todo]]` may not be iterable
[error] unsupported-operator - :689:16 -
Old: Operator `not in` is not supported for types `Unknown` and `None`, in comparing `Unknown` with `None | dict[@Todo, @Todo] | Unknown`
New: Operator `not in` is not supported for types `Unknown` and `None`, in comparing `Unknown | Zero | list[@Todo]` with `None | dict[Unknown | Zero, Unknown | list[@Todo]] | Unknown`
[error] not-iterable - :1054:18 -
Old: Object of type `None | dict[@Todo, @Todo] | Unknown` may not be iterable
New: Object of type `None | dict[Unknown | Zero, Unknown | list[@Todo]] | Unknown` may not be iterable
[error] not-iterable - :1055:22 -
Old: Object of type `None | Unknown | dict[@Todo, @Todo]` may not be iterable
New: Object of type `None | Unknown | dict[Unknown | Zero, Unknown | list[@Todo]]` may not be iterable

sympy/matrices/tests/test_commonmatrix.py

[error] unsupported-operator - :814:31 -
Old: Operator `*` is unsupported between objects of type `ArithmeticOnlyMatrix` and `dict[@Todo, @Todo]`
New: Operator `*` is unsupported between objects of type `ArithmeticOnlyMatrix` and `dict[Unknown, Unknown]`

sympy/matrices/tests/test_matrixbase.py

[error] unsupported-operator - :960:31 -
Old: Operator `*` is unsupported between objects of type `Unknown | MutableDenseMatrix` and `dict[@Todo, @Todo]`
New: Operator `*` is unsupported between objects of type `Unknown | MutableDenseMatrix` and `dict[Unknown, Unknown]`

sympy/ntheory/tests/test_factor_.py

[error] unsupported-operator - :346:31 -
Old: Operator `**` is unsupported between objects of type `Unknown | dict[@Todo, @Todo]` and `Literal[3]`
New: Operator `**` is unsupported between objects of type `Unknown | dict[Unknown | int, Unknown | int]` and `Literal[3]`
[error] unsupported-operator - :347:31 -
Old: Operator `*` is unsupported between objects of type `Literal[2]` and `Unknown | dict[@Todo, @Todo]`
New: Operator `*` is unsupported between objects of type `Literal[2]` and `Unknown | dict[Unknown | int, Unknown | int]`

sympy/parsing/tests/test_sympy_parser.py

[error] call-non-callable - :137:50 - Object of type `Function` is not callable

sympy/polys/tests/test_galoistools.py

[error] invalid-argument-type - :606:22 - Argument to function `gf_from_dict` is incorrect: Expected `dict[int, MPZ]`, found `dict[Unknown | int, Unknown | int]`
[error] invalid-argument-type - :789:22 - Argument to function `gf_from_dict` is incorrect: Expected `dict[int, MPZ]`, found `dict[Unknown | int, Unknown | int]`
[error] invalid-argument-type - :106:25 - Argument to function `gf_from_dict` is incorrect: Expected `dict[int, MPZ]`, found `dict[Unknown | int, Unknown | int]`
[error] invalid-argument-type - :113:25 - Argument to function `gf_from_dict` is incorrect: Expected `dict[int, MPZ]`, found `dict[Unknown | int, Unknown | int]`
[error] invalid-argument-type - :496:22 - Argument to function `gf_from_dict` is incorrect: Expected `dict[int, MPZ]`, found `dict[Unknown | int, Unknown | int]`
[error] invalid-argument-type - :726:25 - Argument to function `gf_from_dict` is incorrect: Expected `dict[int, MPZ]`, found `dict[Unknown | int, Unknown | int]`

sympy/utilities/tests/test_lambdify.py

[error] non-subscriptable - :298:21 - Cannot subscript object of type `object` with no `__getitem__` method
[error] call-non-callable - :302:28 - Object of type `Basic` is not callable

tornado (https://github.com/tornadoweb/tornado)

tornado/ioloop.py

[warning] possibly-missing-attribute - :532:24 - Attribute `cancel` on type `(Unknown & ~None) | bool` may be missing
[warning] possibly-missing-attribute - :540:12 - Attribute `cancelled` on type `(Unknown & ~None) | bool` may be missing
[warning] possibly-missing-attribute - :540:53 - Attribute `done` on type `(Unknown & ~None) | bool` may be missing
[warning] possibly-missing-attribute - :547:16 - Attribute `result` on type `(Unknown & ~None) | bool` may be missing

twine (https://github.com/pypa/twine)

twine/package.py

[warning] unused-ignore-comment - :264:38 - Unused blanket `type: ignore` directive

urllib3 (https://github.com/urllib3/urllib3)

src/urllib3/contrib/pyopenssl.py

[error] invalid-return-type - :397:16 - Return type does not match returned value: expected `dict[str, list[Any]] | None`, found `dict[Unknown | str, Unknown | tuple[tuple[tuple[str, Unknown]]] | list[tuple[str, str]]]`

test/test_poolmanager.py

[warning] unused-ignore-comment - :174:39 - Unused blanket `type: ignore` directive

test/with_dummyserver/test_socketlevel.py

[error] invalid-argument-type - :1807:64 - Argument to bound method `__init__` is incorrect: Expected `Mapping[str, str] | None`, found `Unknown | str`
[error] invalid-argument-type - :1807:64 - Argument to bound method `__init__` is incorrect: Expected `Mapping[str, str] | None`, found `Unknown | str`
[error] invalid-argument-type - :1807:64 - Argument to bound method `__init__` is incorrect: Expected `Retry | int | None`, found `Unknown | str`
[error] invalid-argument-type - :1807:64 - Argument to bound method `__init__` is incorrect: Expected `TLSVersion | None`, found `Unknown | str`
[error] invalid-argument-type - :1807:64 - Argument to bound method `__init__` is incorrect: Expected `TLSVersion | None`, found `Unknown | str`
[error] invalid-argument-type - :1807:64 - Argument to bound method `__init__` is incorrect: Expected `Url | None`, found `Unknown | str`
[error] invalid-argument-type - :1807:64 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str`
[error] invalid-argument-type - :1807:64 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | str`

vision (https://github.com/pytorch/vision)

references/detection/coco_utils.py

[warning] possibly-missing-attribute - :137:9 - Attribute `append` on type `Unknown | list[Unknown] | dict[Unknown, Unknown]` may be missing
[warning] possibly-missing-attribute - :166:13 - Attribute `append` on type `Unknown | list[Unknown] | dict[Unknown, Unknown]` may be missing

test/common_extended_utils.py

[error] invalid-argument-type - :251:52 - Argument is incorrect: Expected `list[Any]`, found `Unknown | tuple[()]`
[error] invalid-argument-type - :251:52 - Argument is incorrect: Expected `list[Any]`, found `Unknown | tuple[()]`

test/test_models.py

[error] unsupported-operator - :1015:38 - Operator `+` is unsupported between objects of type `Unknown | int | list[Unknown | int]` and `Literal[1]`

test/test_transforms_v2.py

[error] invalid-argument-type - :4562:68 - Argument to bound method `__init__` is incorrect: Expected `InterpolationMode | int`, found `Unknown | list[Unknown | int]`
[error] invalid-argument-type - :4562:68 - Argument to bound method `__init__` is incorrect: Expected `bool | None`, found `Unknown | list[Unknown | int]`
[error] invalid-argument-type - :4562:68 - Argument to bound method `__init__` is incorrect: Expected `tuple[int | float, int | float]`, found `Unknown | list[Unknown | int]`
[error] invalid-argument-type - :4562:68 - Argument to bound method `__init__` is incorrect: Expected `tuple[int | float, int | float]`, found `Unknown | list[Unknown | int]`
[error] invalid-argument-type - :3824:38 -
Old: Argument to bound method `__init__` is incorrect: Expected `int | float`, found `dict[@Todo, @Todo]`
New: Argument to bound method `__init__` is incorrect: Expected `int | float`, found `dict[Unknown, Unknown]`
[error] invalid-argument-type - :3923:40 -
Old: Argument to bound method `__init__` is incorrect: Expected `int | float | Sequence[int | float]`, found `dict[@Todo, @Todo]`
New: Argument to bound method `__init__` is incorrect: Expected `int | float | Sequence[int | float]`, found `dict[Unknown, Unknown]`
[warning] possibly-missing-attribute - :7019:30 -
Old: Attribute `keys` on type `dict[@Todo, @Todo] | tuple[Image | Unknown, Literal[1] | Unknown]` may be missing
New: Attribute `keys` on type `dict[Unknown | str, Unknown | Image | int] | tuple[Image | Unknown, Literal[1] | Unknown]` may be missing

torchvision/models/detection/ssd.py

[error] invalid-argument-type - :677:70 - Argument to bound method `__init__` is incorrect: Expected `int | float`, found `Unknown | list[Unknown | float] | list[Unknown | int | float]`
[error] invalid-argument-type - :677:70 - Argument to bound method `__init__` is incorrect: Expected `int | float`, found `Unknown | list[Unknown | float] | list[Unknown | int | float]`
[error] invalid-argument-type - :677:70 - Argument to bound method `__init__` is incorrect: Expected `int | float`, found `Unknown | list[Unknown | float] | list[Unknown | int | float]`
[error] invalid-argument-type - :677:70 - Argument to bound method `__init__` is incorrect: Expected `int | float`, found `Unknown | list[Unknown | float] | list[Unknown | int | float]`
[error] invalid-argument-type - :677:70 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | list[Unknown | float] | list[Unknown | int | float]`
[error] invalid-argument-type - :677:70 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | list[Unknown | float] | list[Unknown | int | float]`

torchvision/models/detection/ssdlite.py

[error] invalid-argument-type - :325:9 - Argument to bound method `__init__` is incorrect: Expected `int | float`, found `Unknown | float | int | list[Unknown | float]`
[error] invalid-argument-type - :325:9 - Argument to bound method `__init__` is incorrect: Expected `int | float`, found `Unknown | float | int | list[Unknown | float]`
[error] invalid-argument-type - :325:9 - Argument to bound method `__init__` is incorrect: Expected `int | float`, found `Unknown | float | int | list[Unknown | float]`
[error] invalid-argument-type - :325:9 - Argument to bound method `__init__` is incorrect: Expected `int | float`, found `Unknown | float | int | list[Unknown | float]`
[error] invalid-argument-type - :325:9 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | float | int | list[Unknown | float]`
[error] invalid-argument-type - :325:9 - Argument to bound method `__init__` is incorrect: Expected `int`, found `Unknown | float | int | list[Unknown | float]`
[error] invalid-argument-type - :325:9 - Argument to bound method `__init__` is incorrect: Expected `list[int | float] | None`, found `Unknown | float | int | list[Unknown | float]`
[error] invalid-argument-type - :325:9 - Argument to bound method `__init__` is incorrect: Expected `list[int | float] | None`, found `Unknown | float | int | list[Unknown | float]`

torchvision/models/video/mvit.py

[error] invalid-argument-type - :743:17 - Argument is incorrect: Expected `int`, found `Unknown | int | list[Unknown] | list[Unknown | int]`
[error] invalid-argument-type - :744:17 - Argument is incorrect: Expected `int`, found `Unknown | int | list[Unknown] | list[Unknown | int]`
[error] invalid-argument-type - :745:17 - Argument is incorrect: Expected `int`, found `Unknown | int | list[Unknown] | list[Unknown | int]`
[error] invalid-argument-type - :746:17 - Argument is incorrect: Expected `list[int]`, found `Unknown | int | list[Unknown] | list[Unknown | int]`
[error] invalid-argument-type - :747:17 - Argument is incorrect: Expected `list[int]`, found `Unknown | int | list[Unknown] | list[Unknown | int]`
[error] invalid-argument-type - :748:17 - Argument is incorrect: Expected `list[int]`, found `Unknown | int | list[Unknown] | list[Unknown | int]`
[error] invalid-argument-type - :749:17 - Argument is incorrect: Expected `list[int]`, found `Unknown | int | list[Unknown] | list[Unknown | int]`
[error] invalid-argument-type - :876:17 - Argument is incorrect: Expected `int`, found `Unknown | int | list[Unknown | int]`
[error] invalid-argument-type - :877:17 - Argument is incorrect: Expected `int`, found `Unknown | int | list[Unknown | int]`
[error] invalid-argument-type - :878:17 - Argument is incorrect: Expected `int`, found `Unknown | int | list[Unknown | int]`
[error] invalid-argument-type - :879:17 - Argument is incorrect: Expected `list[int]`, found `Unknown | int | list[Unknown | int]`
[error] invalid-argument-type - :880:17 - Argument is incorrect: Expected `list[int]`, found `Unknown | int | list[Unknown | int]`
[error] invalid-argument-type - :881:17 - Argument is incorrect: Expected `list[int]`, found `Unknown | int | list[Unknown | int]`
[error] invalid-argument-type - :882:17 - Argument is incorrect: Expected `list[int]`, found `Unknown | int | list[Unknown | int]`

werkzeug (https://github.com/pallets/werkzeug)

src/werkzeug/serving.py

[warning] possibly-missing-attribute - :223:12 - Attribute `strip` on type `Unknown | tuple[int, int] | str | TextIO | bool` may be missing
[error] invalid-argument-type - :225:52 - Argument to bound method `__init__` is incorrect: Expected `IO[bytes]`, found `Unknown | tuple[int, int] | str | TextIO | bool`

src/werkzeug/wsgi.py

[error] invalid-argument-type - :66:42 - Argument to function `get_current_url` is incorrect: Expected `bytes | None`, found `Unknown | str`

xarray (https://github.com/pydata/xarray)

xarray/backends/api.py

[error] invalid-argument-type - :1616:27 -
Old: Argument to function `open_dataset` is incorrect: Expected `Literal["coordinates", "all"] | bool | None`, found `@Todo | None | (@Todo & ~AlwaysFalsy) | dict[@Todo, @Todo]`
New: Argument to function `open_dataset` is incorrect: Expected `Literal["coordinates", "all"] | bool | None`, found `@Todo | None | (@Todo & ~AlwaysFalsy) | dict[Unknown, Unknown]`
[error] invalid-argument-type - :1616:27 -
Old: Argument to function `open_dataset` is incorrect: Expected `bool | None`, found `@Todo | None | (@Todo & ~AlwaysFalsy) | dict[@Todo, @Todo]`
New: Argument to function `open_dataset` is incorrect: Expected `Literal["coordinates", "all"] | bool | None`, found `@Todo | None | (@Todo & ~AlwaysFalsy) | dict[Unknown, Unknown]`
[error] invalid-argument-type - :1616:27 -
Old: Argument to function `open_dataset` is incorrect: Expected `bool | None`, found `@Todo | None | (@Todo & ~AlwaysFalsy) | dict[@Todo, @Todo]`
New: Argument to function `open_dataset` is incorrect: Expected `Literal["coordinates", "all"] | bool | None`, found `@Todo | None | (@Todo & ~AlwaysFalsy) | dict[Unknown, Unknown]`
[error] invalid-argument-type - :1616:27 -
Old: Argument to function `open_dataset` is incorrect: Expected `bool`, found `@Todo | None | (@Todo & ~AlwaysFalsy) | dict[@Todo, @Todo]`
New: Argument to function `open_dataset` is incorrect: Expected `Literal["coordinates", "all"] | bool | None`, found `@Todo | None | (@Todo & ~AlwaysFalsy) | dict[Unknown, Unknown]`
[error] invalid-argument-type - :1616:27 -
Old: Argument to function `open_dataset` is incorrect: Expected `bool`, found `@Todo | None | (@Todo & ~AlwaysFalsy) | dict[@Todo, @Todo]`
New: Argument to function `open_dataset` is incorrect: Expected `Literal["coordinates", "all"] | bool | None`, found `@Todo | None | (@Todo & ~AlwaysFalsy) | dict[Unknown, Unknown]`
[error] invalid-argument-type - :1616:27 -
Old: Argument to function `open_dataset` is incorrect: Expected `str | None`, found `@Todo | None | (@Todo & ~AlwaysFalsy) | dict[@Todo, @Todo]`
New: Argument to function `open_dataset` is incorrect: Expected `Literal["coordinates", "all"] | bool | None`, found `@Todo | None | (@Todo & ~AlwaysFalsy) | dict[Unknown, Unknown]`
[error] invalid-argument-type - :1616:27 - Argument to function `open_dataset` is incorrect: Expected `bool | None`, found `@Todo | None | (@Todo & ~AlwaysFalsy) | dict[Unknown, Unknown]`
[error] invalid-argument-type - :1616:27 - Argument to function `open_dataset` is incorrect: Expected `bool | None`, found `@Todo | None | (@Todo & ~AlwaysFalsy) | dict[Unknown, Unknown]`
[error] invalid-argument-type - :1616:27 - Argument to function `open_dataset` is incorrect: Expected `bool`, found `@Todo | None | (@Todo & ~AlwaysFalsy) | dict[Unknown, Unknown]`
[error] invalid-argument-type - :1616:27 - Argument to function `open_dataset` is incorrect: Expected `bool`, found `@Todo | None | (@Todo & ~AlwaysFalsy) | dict[Unknown, Unknown]`
[error] invalid-argument-type - :1616:27 - Argument to function `open_dataset` is incorrect: Expected `str | None`, found `@Todo | None | (@Todo & ~AlwaysFalsy) | dict[Unknown, Unknown]`

xarray/coding/cftime_offsets.py

[error] invalid-assignment - :687:1 - Object of type `dict[Unknown | str, Unknown | type[BaseCFTimeOffset] | partial[Unknown]]` is not assignable to `Mapping[str, type[BaseCFTimeOffset]]`
[warning] unused-ignore-comment - :683:64 - Unused blanket `type: ignore` directive

xarray/core/dataset.py

[error] invalid-assignment - :4610:17 - Method `__setitem__` of type `bound method Top[MutableMapping[Unknown, Unknown]].__setitem__(key: Never, value: Never, /) -> None` cannot be called with a key of type `Unknown` and a value of type `Unknown | int` on object of type `Mapping[Hashable, Any] & Top[MutableMapping[Unknown, Unknown]]`
[error] invalid-argument-type - :5192:45 - Argument expression after ** must be a mapping with `str` key type: Found `Hashable`
[error] invalid-argument-type - :5382:34 - Argument expression after ** must be a mapping with `str` key type: Found `Hashable`

xarray/tests/test_backends.py

[warning] unused-ignore-comment - :3537:84 - Unused blanket `type: ignore` directive
[error] invalid-argument-type - :3764:34 -
Old: Argument to bound method `__init__` is incorrect: Expected `MutableMapping[str, bool | dict[@Todo, @Todo]]`, found `dict[str, bool]`
New: Argument to bound method `__init__` is incorrect: Expected `MutableMapping[str, bool | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | int]]]`, found `dict[str, bool]`
[error] invalid-argument-type - :3764:47 -
Old: Argument to bound method `__init__` is incorrect: Expected `MutableMapping[str, bool | dict[@Todo, @Todo]]`, found `dict[str, dict[@Todo, @Todo]]`
New: Argument to bound method `__init__` is incorrect: Expected `MutableMapping[str, bool | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | int]]]`, found `dict[str, dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | int]]]`
[error] invalid-argument-type - :3781:25 -
Old: Argument to bound method `__init__` is incorrect: Expected `MutableMapping[str, bool | dict[@Todo, @Todo]]`, found `dict[str, bool]`
New: Argument to bound method `__init__` is incorrect: Expected `MutableMapping[str, bool | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | int]]]`, found `dict[str, bool]`
[error] invalid-argument-type - :3781:38 -
Old: Argument to bound method `__init__` is incorrect: Expected `MutableMapping[str, bool | dict[@Todo, @Todo]]`, found `dict[str, dict[@Todo, @Todo]]`
New: Argument to bound method `__init__` is incorrect: Expected `MutableMapping[str, bool | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | int]]]`, found `dict[str, dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | int]]]`

xarray/tests/test_concat.py

[warning] unused-ignore-comment - :282:55 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :295:53 - Unused blanket `type: ignore` directive

xarray/tests/test_coordinates.py

[warning] unused-ignore-comment - :71:56 - Unused blanket `type: ignore` directive

xarray/tests/test_dataarray.py

[error] invalid-argument-type - :3788:13 - Method `__getitem__` of type `Overload[(index: SupportsIndex, /) -> str, (index: slice[Any, Any, Any], /) -> tuple[str, ...]]` cannot be called with key of type `Literal["x"]` on object of type `tuple[str, str]`
[error] invalid-argument-type - :3788:13 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["x"]` on object of type `str`
[warning] possibly-missing-attribute - :3790:9 - Attribute `update` on type `Any | ndarray[@Todo, Unknown] | dict[Unknown | str, Unknown | tuple[str] | dict[Unknown, Unknown]]` may be missing
[error] invalid-argument-type - :3790:9 - Method `__getitem__` of type `Overload[(index: SupportsIndex, /) -> str, (index: slice[Any, Any, Any], /) -> tuple[str, ...]]` cannot be called with key of type `Literal["x"]` on object of type `tuple[str, str]`
[error] invalid-argument-type - :3790:9 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["x"]` on object of type `str`
[error] no-matching-overload - :4566:30 - No overload of function `pad` matches arguments
[warning] unused-ignore-comment - :3825:50 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :3826:50 - Unused blanket `type: ignore` directive

xarray/tests/test_dataset.py

[warning] possibly-missing-implicit-call - :5359:13 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | tuple[str] | list[Unknown] | dict[Unknown, Unknown]] | int | dict[Unknown | str, Unknown | tuple[str] | dict[Unknown, Unknown]]` may be missing
[warning] possibly-missing-implicit-call - :5361:17 - Method `__setitem__` of type `Any | dict[Unknown | str, Unknown | tuple[str] | list[Unknown] | dict[Unknown, Unknown]] | int | dict[Unknown | str, Unknown | tuple[str] | dict[Unknown, Unknown]]` may be missing
[error] non-subscriptable - :5378:13 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :5379:13 - Cannot subscript object of type `int` with no `__getitem__` method
[error] non-subscriptable - :5380:13 - Cannot subscript object of type `int` with no `__getitem__` method
[warning] possibly-missing-attribute - :5382:9 - Attribute `update` on type `Any | dict[Unknown | str, Unknown | tuple[str] | list[Unknown] | dict[Unknown, Unknown]] | int | dict[Unknown | str, Unknown | tuple[str] | dict[Unknown, Unknown]]` may be missing
[warning] possibly-missing-attribute - :5383:9 - Attribute `update` on type `Any | dict[Unknown | str, Unknown | tuple[str] | list[Unknown] | dict[Unknown, Unknown]] | int | dict[Unknown | str, Unknown | tuple[str] | dict[Unknown, Unknown]]` may be missing
[warning] possibly-missing-attribute - :5384:9 - Attribute `update` on type `Any | dict[Unknown | str, Unknown | tuple[str] | list[Unknown] | dict[Unknown, Unknown]] | int | dict[Unknown | str, Unknown | tuple[str] | dict[Unknown, Unknown]]` may be missing
[warning] unused-ignore-comment - :3325:51 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :5478:50 - Unused blanket `type: ignore` directive
[warning] unused-ignore-comment - :5479:50 - Unused blanket `type: ignore` directive

xarray/tests/test_distributed.py

[error] invalid-argument-type - :280:53 - Argument to function `open_dataset` is incorrect: Expected `Literal["coordinates", "all"] | bool | None`, found `Any | dict[Unknown | str, Unknown | bool]`
[error] invalid-argument-type - :280:53 - Argument to function `open_dataset` is incorrect: Expected `bool | None`, found `Any | dict[Unknown | str, Unknown | bool]`
[error] invalid-argument-type - :280:53 - Argument to function `open_dataset` is incorrect: Expected `bool | None`, found `Any | dict[Unknown | str, Unknown | bool]`
[error] invalid-argument-type - :280:53 - Argument to function `open_dataset` is incorrect: Expected `bool`, found `Any | dict[Unknown | str, Unknown | bool]`
[error] invalid-argument-type - :280:53 - Argument to function `open_dataset` is incorrect: Expected `bool`, found `Any | dict[Unknown | str, Unknown | bool]`
[error] invalid-argument-type - :280:53 - Argument to function `open_dataset` is incorrect: Expected `str | None`, found `Any | dict[Unknown | str, Unknown | bool]`

xarray/tests/test_treenode.py

[warning] unused-ignore-comment - :103:44 - Unused blanket `type: ignore` directive

xarray/tests/test_units.py

[error] invalid-argument-type - :2333:35 - Argument to bound method `__init__` is incorrect: Expected `Mapping[Hashable, Index] | None`, found `Unknown | str | dict[Unknown | str, Unknown] | dict[Unknown | str, Unknown | tuple[str, Unknown]] | dict[Unknown, Unknown]`
[error] invalid-argument-type - :2333:35 - Argument to bound method `__init__` is incorrect: Expected `Mapping[Unknown, Unknown] | None`, found `Unknown | str | dict[Unknown | str, Unknown] | dict[Unknown | str, Unknown | tuple[str, Unknown]] | dict[Unknown, Unknown]`
[error] invalid-argument-type - :2333:35 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | dict[Unknown | str, Unknown] | dict[Unknown | str, Unknown | tuple[str, Unknown]] | dict[Unknown, Unknown]`
[error] invalid-argument-type - :2369:35 - Argument to bound method `__init__` is incorrect: Expected `Mapping[Hashable, Index] | None`, found `Unknown | str | dict[Unknown | str, Unknown] | dict[Unknown | str, Unknown | tuple[str, Unknown]] | dict[Unknown, Unknown]`
[error] invalid-argument-type - :2369:35 - Argument to bound method `__init__` is incorrect: Expected `Mapping[Unknown, Unknown] | None`, found `Unknown | str | dict[Unknown | str, Unknown] | dict[Unknown | str, Unknown | tuple[str, Unknown]] | dict[Unknown, Unknown]`
[error] invalid-argument-type - :2369:35 - Argument to bound method `__init__` is incorrect: Expected `bool`, found `Unknown | str | dict[Unknown | str, Unknown] | dict[Unknown | str, Unknown | tuple[str, Unknown]] | dict[Unknown, Unknown]`

zope.interface (https://github.com/zopefoundation/zope.interface)

src/zope/interface/tests/test_declarations.py

[error] invalid-argument-type - :2057:31 - Argument to bound method `__init__` is incorrect: Expected `Iterable[Unknown]`, found `Unknown | str | ((*interfaces) -> Unknown) | InterfaceClass`

zulip (https://github.com/zulip/zulip)

zerver/tests/test_rocketchat_importer.py

[error] invalid-assignment - :423:9 - Method `__setitem__` of type `bound method dict[str, dict[str, Any]].__setitem__(key: str, value: dict[str, Any], /) -> None` cannot be called with a key of type `Any | str | datetime` and a value of type `dict[str, Any | str | datetime]` on object of type `dict[str, dict[str, Any]]`

zerver/tests/test_settings.py

[error] invalid-argument-type - :496:33 - Argument to function `getattr` is incorrect: Expected `str`, found `Any | str | int`

zilencer/management/commands/add_mock_conversation.py

[error] invalid-argument-type - :114:17 - Argument to function `internal_prep_stream_message` is incorrect: Expected `UserProfile`, found `Any | UserProfile | str`
[error] invalid-argument-type - :117:17 - Argument to function `internal_prep_stream_message` is incorrect: Expected `str`, found `Any | UserProfile | str`

analytics/views/stats.py

[warning] possibly-missing-attribute - :534:13 - Attribute `update` on type `Any | list[@Todo] | str` may be missing
[error] invalid-argument-type - :546:54 - Argument to function `sort_client_labels` is incorrect: Expected `dict[str, dict[str, list[int]]]`, found `dict[str, Any | list[@Todo] | str]`

zerver/actions/create_user.py

[error] invalid-argument-type - :440:21 - Argument to function `format_user_row` is incorrect: Expected `bool`, found `Any | RawUserDict | bool | dict[Unknown, Unknown]`
[error] invalid-argument-type - :440:21 - Argument to function `format_user_row` is incorrect: Expected `bool`, found `Any | RawUserDict | bool | dict[Unknown, Unknown]`
[error] invalid-argument-type - :440:21 - Argument to function `format_user_row` is incorrect: Expected `dict[str, Any] | None`, found `Any | RawUserDict | bool | dict[Unknown, Unknown]`
[error] invalid-argument-type - :440:21 - Argument to function `format_user_row` is incorrect: Expected `int`, found `Any | RawUserDict | bool | dict[Unknown, Unknown]`
[error] invalid-argument-type - :447:21 - Argument to function `format_user_row` is incorrect: Expected `bool`, found `Any | RawUserDict | bool | dict[Unknown, Unknown]`
[error] invalid-argument-type - :447:21 - Argument to function `format_user_row` is incorrect: Expected `bool`, found `Any | RawUserDict | bool | dict[Unknown, Unknown]`
[error] invalid-argument-type - :447:21 - Argument to function `format_user_row` is incorrect: Expected `dict[str, Any] | None`, found `Any | RawUserDict | bool | dict[Unknown, Unknown]`
[error] invalid-argument-type - :447:21 - Argument to function `format_user_row` is incorrect: Expected `int`, found `Any | RawUserDict | bool | dict[Unknown, Unknown]`

zerver/actions/message_edit.py

[error] invalid-argument-type - :680:22 - Invalid argument to key "timestamp" with declared type `int` on TypedDict `EditHistoryEvent`: value of type `Any | str | int`

zerver/data_import/slack.py

[warning] possibly-missing-implicit-call - :1447:9 - Method `__setitem__` of type `Unknown | bool | dict[Unknown | str, Unknown]` may be missing

zerver/lib/rest.py

[error] invalid-return-type - :110:20 - Return type does not match returned value: expected `tuple[(...) -> HttpResponse, set[str]] | HttpResponse`, found `tuple[(...) -> object, Top[set[Unknown]]]`
[error] invalid-return-type - :112:16 - Return type does not match returned value: expected `tuple[(...) -> HttpResponse, set[str]] | HttpResponse`, found `tuple[((...) -> object) & ~tuple[object, ...], set[Unknown]]`

zerver/openapi/python_examples.py

[error] unsupported-operator - :1116:12 - Operator `<=` is not supported for types `int` and `str`, in comparing `int` with `Any | str | int | list[Unknown | dict[Unknown | str, Unknown | str]]`
[error] invalid-return-type - :1338:12 - Return type does not match returned value: expected `tuple[int, str]`, found `tuple[Unknown, Unknown | str | list[Unknown | int]]`

zerver/tests/test_slack_importer.py

[warning] possibly-missing-implicit-call - :831:22 - Method `__setitem__` of type `Any | str | bool | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str]]] | dict[Unknown | str, Unknown | str]` may be missing
[warning] possibly-missing-implicit-call - :832:22 - Method `__setitem__` of type `Any | str | bool | dict[Unknown | str, Unknown | str | dict[Unknown | str, Unknown | dict[Unknown | str, Unknown | str]]] | dict[Unknown | str, Unknown | str]` may be missing

zproject/backends.py

[error] unresolved-attribute - :1738:23 - Type `CustomProfileField` has no attribute `id`

zproject/computed_settings.py

[warning] possibly-missing-implicit-call - :381:9 - Method `__setitem__` of type `Any | str | int | dict[Unknown | str, Unknown | <class 'TimeTrackingConnection'> | <class 'TimeTrackingCursor'> | int]` may be missing
[warning] possibly-missing-implicit-call - :387:9 - Method `__setitem__` of type `Any | str | int | dict[Unknown | str, Unknown | <class 'TimeTrackingConnection'> | <class 'TimeTrackingCursor'> | int]` may be missing
[warning] possibly-missing-implicit-call - :389:9 - Method `__setitem__` of type `Any | str | int | dict[Unknown | str, Unknown | <class 'TimeTrackingConnection'> | <class 'TimeTrackingCursor'> | int]` may be missing
[warning] possibly-missing-attribute - :684:5 - Attribute `append` on type `Any | str | list[Unknown | str]` may be missing
[error] invalid-argument-type - :684:5 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["context_processors"]` on object of type `str`
[warning] possibly-missing-attribute - :712:1 - Attribute `update` on type `Any | str | dict[Unknown | str, Unknown | str | list[Unknown | str]]` may be missing
[error] invalid-argument-type - :721:5 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["environment"]` on object of type `str`
[error] invalid-argument-type - :722:5 - Method `__getitem__` of type `Overload[(key: SupportsIndex | slice[Any, Any, Any], /) -> LiteralString, (key: SupportsIndex | slice[Any, Any, Any], /) -> str]` cannot be called with key of type `Literal["extensions"]` on object of type `str`
[warning] possibly-missing-implicit-call - :723:1 - Method `__setitem__` of type `Any | str | dict[Unknown | str, Unknown | str | list[Unknown | str]]` may be missing