Skip to content

fix Pandas locindexer for dataframes inspected as unknown #1678 - #4214

Open
asukaminato0721 wants to merge 2 commits into
facebook:mainfrom
asukaminato0721:1678
Open

fix Pandas locindexer for dataframes inspected as unknown #1678#4214
asukaminato0721 wants to merge 2 commits into
facebook:mainfrom
asukaminato0721:1678

Conversation

@asukaminato0721

@asukaminato0721 asukaminato0721 commented Jul 20, 2026

Copy link
Copy Markdown
Collaborator

Summary

Fixes #1678

Preserve lambdas for contextual overload inference, narrow wide union hints to callable candidates, prevent unresolved generic return hints from prematurely satisfying bounded overloads.

Test Plan

add test

@github-actions

This comment has been minimized.

@meta-codesync

meta-codesync Bot commented Jul 31, 2026

Copy link
Copy Markdown
Contributor

This pull request has been imported. If you are a Meta employee, you can view this in D114356547. (Because this pull request was imported automatically, there will not be any future comments.)

@codspeed-hq

codspeed-hq Bot commented Jul 31, 2026

Copy link
Copy Markdown

Merging this PR will not alter performance

✅ 11 untouched benchmarks
⏩ 3 skipped benchmarks1


Comparing asukaminato0721:1678 (51b7fa9) with main (3ad3a27)

Open in CodSpeed

Footnotes

  1. 3 benchmarks were skipped, so the baseline results were used instead. If they were deleted from the codebase, click here and archive them to remove them from the performance reports.

@github-actions

This comment has been minimized.

@asukaminato0721
asukaminato0721 marked this pull request as ready for review July 31, 2026 13:25
@github-actions github-actions Bot added size/m and removed size/s labels Jul 31, 2026
@github-actions

This comment has been minimized.

@github-actions

github-actions Bot commented Aug 2, 2026

Copy link
Copy Markdown

Diff from mypy_primer, showing the effect of this PR on open source code:

pip (https://github.com/pypa/pip)
- ERROR src/pip/_internal/commands/list.py:292:24-28: Type of lambda parameter `dist` is unknown [implicit-any-lambda]
- ERROR src/pip/_internal/exceptions.py:596:37-38: Type of lambda parameter `e` is unknown [implicit-any-lambda]
- ERROR src/pip/_internal/exceptions.py:597:63-64: Type of lambda parameter `e` is unknown [implicit-any-lambda]
- ERROR src/pip/_internal/exceptions.py:598:26-34: The type of this argument is unknown [unknown-argument-type]
- ERROR src/pip/_internal/exceptions.py:600:12-17: Implicit conversion of `list[Unknown]` to `bool` is not allowed [implicit-bool]
+ ERROR src/pip/_internal/exceptions.py:600:12-17: Implicit conversion of `list[str]` to `bool` is not allowed [implicit-bool]
- ERROR src/pip/_internal/index/package_finder.py:502:24-25: Type of lambda parameter `c` is unknown [implicit-any-lambda]
- ERROR src/pip/_internal/index/package_finder.py:503:21-30: The type of this argument is unknown [unknown-argument-type]
- ERROR src/pip/_internal/network/auth.py:343:24-33: Type of lambda parameter `candidate` is unknown [implicit-any-lambda]
- ERROR src/pip/_internal/operations/freeze.py:146:67-68: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/pip/_internal/req/req_set.py:23:24-27: Type of lambda parameter `req` is unknown [implicit-any-lambda]
- ERROR src/pip/_internal/req/req_set.py:30:24-27: Type of lambda parameter `req` is unknown [implicit-any-lambda]
+ ERROR src/pip/_internal/req/req_set.py:23:47-55: Implicit conversion of `str | None` to `bool` is not allowed [implicit-bool]
+ ERROR src/pip/_internal/req/req_set.py:30:47-55: Implicit conversion of `str | None` to `bool` is not allowed [implicit-bool]
- ERROR src/pip/_internal/resolution/resolvelib/factory.py:583:48-49: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR src/pip/_internal/resolution/resolvelib/resolver.py:122:49-50: Type of lambda parameter `c` is unknown [implicit-any-lambda]
- ERROR src/pip/_internal/utils/pylock.py:127:24-25: Type of lambda parameter `p` is unknown [implicit-any-lambda]
- ERROR src/pip/_vendor/pygments/lexer.py:953:34-35: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/pip/_vendor/pygments/regexopt.py:34:39-40: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR src/pip/_vendor/pygments/regexopt.py:89:55-56: Type of lambda parameter `s` is unknown [implicit-any-lambda]
- ERROR src/pip/_vendor/pygments/sphinxext.py:106:66-67: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/pip/_vendor/pygments/sphinxext.py:159:66-67: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/pip/_vendor/pygments/sphinxext.py:205:66-67: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/pip/_vendor/pygments/sphinxext.py:219:70-71: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/pip/_vendor/urllib3/util/url.py:242:16-21: Type of lambda parameter `match` is unknown [implicit-any-lambda]

tornado (https://github.com/tornadoweb/tornado)
- ERROR tornado/gen.py:646:38-44: Type of lambda parameter `future` is unknown [implicit-any-lambda]
- ERROR tornado/ioloop.py:707:53-54: Type of lambda parameter `f` is unknown [implicit-any-lambda]
- ERROR tornado/ioloop.py:707:84-85: The type of this argument is unknown [unknown-argument-type]
- ERROR tornado/netutil.py:106:20-21: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR tornado/options.py:445:31-37: Type of lambda parameter `option` is unknown [implicit-any-lambda]
- ERROR tornado/test/ioloop_test.py:95:39-41: Type of lambda parameter `fd` is unknown [implicit-any-lambda]
- ERROR tornado/test/ioloop_test.py:95:43-49: Type of lambda parameter `events` is unknown [implicit-any-lambda]
- ERROR tornado/web.py:1449:41-45: Type of lambda parameter `pair` is unknown [implicit-any-lambda]

openlibrary (https://github.com/internetarchive/openlibrary)
- ERROR openlibrary/book_providers.py:231:24-25: Type of lambda parameter `p` is unknown [implicit-any-lambda]
- ERROR openlibrary/catalog/add_book/load_book.py:209:28-29: Type of lambda parameter `a` is unknown [implicit-any-lambda]
- ERROR openlibrary/catalog/add_book/load_book.py:213:50-55: The type of this argument is unknown [unknown-argument-type]
- ERROR openlibrary/catalog/marc/html.py:10:39-40: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR openlibrary/catalog/marc/marc_base.py:79:53-54: Type of lambda parameter `s` is unknown [implicit-any-lambda]
- ERROR openlibrary/catalog/utils/__init__.py:168:36-37: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR openlibrary/catalog/utils/__init__.py:178:29-30: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR openlibrary/catalog/utils/__init__.py:300:31-32: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR openlibrary/catalog/utils/__init__.py:305:43-44: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR openlibrary/catalog/utils/__init__.py:305:50-54: The type of this argument is unknown [unknown-argument-type]
- ERROR openlibrary/core/helpers.py:268:35-36: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR openlibrary/core/lists/model.py:282:63-64: Type of lambda parameter `s` is unknown [implicit-any-lambda]
- ERROR openlibrary/core/lists/model.py:298:37-38: The type of this argument is unknown [unknown-argument-type]
- ERROR openlibrary/data/dump.py:185:61-65: Type of lambda parameter `cols` is unknown [implicit-any-lambda]
- ERROR openlibrary/plugins/openlibrary/lists.py:1019:28-31: Type of lambda parameter `doc` is unknown [implicit-any-lambda]
- ERROR openlibrary/plugins/openlibrary/lists.py:1025:28-31: Type of lambda parameter `doc` is unknown [implicit-any-lambda]
- ERROR openlibrary/plugins/openlibrary/lists.py:1031:28-31: Type of lambda parameter `doc` is unknown [implicit-any-lambda]
- ERROR openlibrary/plugins/openlibrary/pd.py:67:40-43: Type of lambda parameter `org` is unknown [implicit-any-lambda]
+ ERROR openlibrary/plugins/upstream/account.py:1461:31-94: No matching overload found for function `list.sort` called with arguments: (key=(item: Unknown) -> Unknown, reverse=Literal[True]) [no-matching-overload]
- ERROR openlibrary/plugins/upstream/code.py:167:63-66: Type of lambda parameter `doc` is unknown [implicit-any-lambda]
- ERROR openlibrary/plugins/upstream/merge_authors.py:240:40-43: Type of lambda parameter `key` is unknown [implicit-any-lambda]
- ERROR openlibrary/plugins/upstream/utils.py:735:20-21: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR openlibrary/plugins/worksearch/code.py:639:51-55: Type of lambda parameter `term` is unknown [implicit-any-lambda]
- ERROR openlibrary/plugins/worksearch/code.py:639:73-77: The type of this argument is unknown [unknown-argument-type]
- ERROR openlibrary/plugins/worksearch/languages.py:36:29-30: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR openlibrary/solr/query_utils.py:135:44-46: Type of lambda parameter `_1` is unknown [implicit-any-lambda]

mkdocs (https://github.com/mkdocs/mkdocs)
- ERROR mkdocs/plugins.py:525:53-54: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR mkdocs/plugins.py:525:65-66: The type of this argument is unknown [unknown-argument-type]
- ERROR mkdocs/tests/utils/utils_tests.py:203:46-47: Type of lambda parameter `v` is unknown [implicit-any-lambda]

black (https://github.com/psf/black)
- ERROR src/black/__init__.py:232:50-52: Type of lambda parameter `tv` is unknown [implicit-any-lambda]
- ERROR src/black/files.py:89:20-24: Type of lambda parameter `path` is unknown [implicit-any-lambda]
- ERROR src/black/lines.py:267:33-37: Type of lambda parameter `leaf` is unknown [implicit-any-lambda]
- ERROR src/black/parsing.py:64:50-52: Type of lambda parameter `tv` is unknown [implicit-any-lambda]

imagehash (https://github.com/JohannesBuchner/imagehash)
- ERROR imagehash/__init__.py:541:15-25: Type of lambda parameter `other_hash` is unknown [implicit-any-lambda]
- ERROR imagehash/__init__.py:680:42-43: Type of lambda parameter `s` is unknown [implicit-any-lambda]
- ERROR imagehash/__init__.py:680:49-50: The type of this argument is unknown [unknown-argument-type]

cloud-init (https://github.com/canonical/cloud-init)
- ERROR cloudinit/analyze/show.py:343:47-48: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR cloudinit/config/schema.py:780:51-52: Type of lambda parameter `e` is unknown [implicit-any-lambda]
- ERROR cloudinit/handlers/__init__.py:62:51-52: Type of lambda parameter `e` is unknown [implicit-any-lambda]
- ERROR cloudinit/handlers/__init__.py:62:62-63: The type of this argument is unknown [unknown-argument-type]
- ERROR cloudinit/net/eni.py:718:24-25: Type of lambda parameter `k` is unknown [implicit-any-lambda]
- ERROR cloudinit/sources/DataSourceEc2.py:962:28-31: Type of lambda parameter `mmd` is unknown [implicit-any-lambda]
- ERROR cloudinit/sources/DataSourceOpenNebula.py:169:36-37: Type of lambda parameter `k` is unknown [implicit-any-lambda]
- ERROR cloudinit/sources/DataSourceOpenNebula.py:169:60-64: The type of this argument is unknown [unknown-argument-type]
- ERROR tests/unittests/sources/test_azure.py:2608:47-48: Type of lambda parameter `d` is unknown [implicit-any-lambda]
- ERROR tests/unittests/sources/test_ovf.py:330:47-48: Type of lambda parameter `t` is unknown [implicit-any-lambda]

egglog-python (https://github.com/egraphs-good/egglog-python)
- ERROR python/egglog/declarations.py:172:65-174:6: `dict[Ident, RulesetDecl]` is not assignable to `dict[Ident, CombinedRulesetDecl | RulesetDecl]` [bad-assignment]

mkosi (https://github.com/systemd/mkosi)
- ERROR mkosi/__init__.py:2415:20-21: Type of lambda parameter `p` is unknown [implicit-any-lambda]
- ERROR mkosi/__init__.py:2415:38-44: The type of this argument is unknown [unknown-argument-type]
- ERROR mkosi/bootloader.py:676:20-21: Type of lambda parameter `k` is unknown [implicit-any-lambda]
- ERROR mkosi/bootloader.py:676:38-44: The type of this argument is unknown [unknown-argument-type]
- ERROR mkosi/config.py:4795:38-39: Type of lambda parameter `i` is unknown [implicit-any-lambda]
- ERROR mkosi/config.py:4795:53-60: The type of this argument is unknown [unknown-argument-type]
- ERROR mkosi/config.py:6308:45-46: Type of lambda parameter `p` is unknown [implicit-any-lambda]
- ERROR mkosi/config.py:6308:63-69: The type of this argument is unknown [unknown-argument-type]
- ERROR mkosi/installer/pacman.py:270:32-33: Type of lambda parameter `p` is unknown [implicit-any-lambda]
- ERROR mkosi/installer/pacman.py:270:55-56: The type of this argument is unknown [unknown-argument-type]
- ERROR mkosi/mounts.py:156:97-98: Type of lambda parameter `s` is unknown [implicit-any-lambda]
- ERROR mkosi/sandbox.py:1110:55-59: Type of lambda parameter `fsop` is unknown [implicit-any-lambda]
- ERROR mkosi/sandbox.py:1110:87-95: The type of this argument is unknown [unknown-argument-type]

cki-lib (https://gitlab.com/cki-project/cki-lib)
- ERROR cki_lib/gitlab.py:194:20-21: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR cki_lib/misc.py:535:48-49: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR cki_lib/misc.py:536:38-39: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR cki_lib/misc.py:543:41-42: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR cki_lib/owners.py:322:61-62: Type of lambda parameter `s` is unknown [implicit-any-lambda]
- ERROR tests/test_messagequeue.py:231:47-48: Type of lambda parameter `c` is unknown [implicit-any-lambda]

mitmproxy (https://github.com/mitmproxy/mitmproxy)
- ERROR docs/scripts/options.py:46:63-64: Type of lambda parameter `t` is unknown [implicit-any-lambda]
- ERROR mitmproxy/addons/modifybody.py:76:32-33: Type of lambda parameter `_` is unknown [implicit-any-lambda]
- ERROR mitmproxy/addons/modifybody.py:83:32-33: Type of lambda parameter `_` is unknown [implicit-any-lambda]
- ERROR mitmproxy/command.py:296:30-31: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR mitmproxy/tools/console/commands.py:53:35-36: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR mitmproxy/tools/console/flowdetailview.py:144:42-43: Type of lambda parameter `p` is unknown [implicit-any-lambda]
- ERROR mitmproxy/tools/console/keymap.py:153:32-33: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR mitmproxy/tools/console/keymap.py:154:31-32: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR mitmproxy/utils/debug.py:72:34-35: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR mitmproxy/utils/debug.py:72:45-46: The type of this argument is unknown [unknown-argument-type]
- ERROR mitmproxy/utils/emoji.py:1888:20-21: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR mitmproxy/utils/strutils.py:103:51-52: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR mitmproxy/utils/strutils.py:107:20-21: Type of lambda parameter `m` is unknown [implicit-any-lambda]
+ ERROR mitmproxy/utils/strutils.py:103:55-65: Implicit conversion of `str | Any` to `bool` is not allowed [implicit-bool]
+ ERROR mitmproxy/utils/strutils.py:107:24-34: Implicit conversion of `str | Any` to `bool` is not allowed [implicit-bool]

dulwich (https://github.com/dulwich/dulwich)
- ERROR dulwich/bundle_uri.py:408:24-25: Type of lambda parameter `e` is unknown [implicit-any-lambda]
- ERROR dulwich/bundle_uri.py:459:24-25: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR dulwich/client.py:4112:39-40: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR dulwich/commit_graph.py:372:58-59: Type of lambda parameter `e` is unknown [implicit-any-lambda]
- ERROR dulwich/diff_tree.py:395:61-397:6: `defaultdict[Unknown, list[None]]` is not assignable to `dict[bytes, list[TreeChange | None]]` [bad-assignment]
- ERROR dulwich/graph.py:211:29-30: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR dulwich/midx.py:497:71-72: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR dulwich/midx.py:518:33-34: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR dulwich/porcelain/__init__.py:4006:35-36: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR dulwich/porcelain/__init__.py:4006:42-68: The type of this argument is unknown [unknown-argument-type]
- ERROR dulwich/porcelain/__init__.py:4726:42-43: Type of lambda parameter `b` is unknown [implicit-any-lambda]
- ERROR dulwich/porcelain/__init__.py:4726:63-64: The type of this argument is unknown [unknown-argument-type]
- ERROR dulwich/porcelain/__init__.py:4728:42-43: Type of lambda parameter `b` is unknown [implicit-any-lambda]
- ERROR dulwich/porcelain/__init__.py:4728:62-63: The type of this argument is unknown [unknown-argument-type]
- ERROR dulwich/porcelain/__init__.py:4782:42-43: Type of lambda parameter `b` is unknown [implicit-any-lambda]
- ERROR dulwich/porcelain/__init__.py:4782:63-64: The type of this argument is unknown [unknown-argument-type]
- ERROR dulwich/porcelain/__init__.py:4784:42-43: Type of lambda parameter `b` is unknown [implicit-any-lambda]
- ERROR dulwich/porcelain/__init__.py:4784:62-63: The type of this argument is unknown [unknown-argument-type]
- ERROR dulwich/porcelain/__init__.py:5103:24-31: Type of lambda parameter `ref_sha` is unknown [implicit-any-lambda]
- ERROR dulwich/porcelain/__init__.py:5190:64-65: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR dulwich/porcelain/__init__.py:5303:66-67: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR dulwich/porcelain/__init__.py:5417:69-70: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR dulwich/porcelain/__init__.py:5420:69-70: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR dulwich/porcelain/__init__.py:7069:38-46: Type of lambda parameter `tag_item` is unknown [implicit-any-lambda]
- ERROR dulwich/reftable.py:456:35-36: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR dulwich/reftable.py:980:36-37: Type of lambda parameter `x` is unknown [implicit-any-lambda]

rotki (https://github.com/rotki/rotki)
- ERROR rotkehlchen/accounting/structures/processed_event.py:156:33-48: Type of lambda parameter `matched_address` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/accounting/structures/processed_event.py:158:25-56: The type of this argument is unknown [unknown-argument-type]
- ERROR rotkehlchen/api/services/history.py:100:56-57: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/chain/ethereum/modules/makerdao/vaults.py:284:47-52: Type of lambda parameter `vault` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/chain/ethereum/modules/makerdao/vaults.py:299:36-41: Type of lambda parameter `vault` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/chain/evm/decoding/decoder.py:748:44-45: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/chain/evm/names.py:157:20-26: Type of lambda parameter `system` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/chain/evm/names.py:157:61-74: The type of this argument is unknown [unknown-argument-type]
- ERROR rotkehlchen/chain/solana/decoding/decoder.py:645:44-45: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/chain/solana/node_inquirer.py:141:40-53: Type of lambda parameter `weighted_node` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/chain/solana/node_inquirer.py:153:32-36: Type of lambda parameter `node` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/chain/solana/node_inquirer.py:153:61-80: The type of this argument is unknown [unknown-argument-type]
- ERROR rotkehlchen/chain/substrate/manager.py:521:24-28: Type of lambda parameter `item` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/data_import/importers/binance.py:314:40-41: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/data_import/importers/binance.py:314:108-117: The type of this argument is unknown [unknown-argument-type]
- ERROR rotkehlchen/data_import/importers/cryptocom.py:498:32-33: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/data_import/importers/cryptocom.py:507:32-33: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/data_import/importers/cryptocom.py:539:94-104: The type of this argument is unknown [unknown-argument-type]
- ERROR rotkehlchen/db/dbhandler.py:3431:42-43: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/db/dbhandler.py:3484:40-41: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/db/eth2.py:513:48-49: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/db/search_assets.py:130:86-90: Type of lambda parameter `item` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/db/search_assets.py:132:13-34: The type of this argument is unknown [unknown-argument-type]
- ERROR rotkehlchen/exchanges/binance.py:1201:32-37: Type of lambda parameter `event` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/exchanges/kraken.py:789:37-38: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/exchanges/kraken.py:858:32-33: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/exchanges/kraken.py:858:52-61: The type of this argument is unknown [unknown-argument-type]
- ERROR rotkehlchen/externalapis/alchemy.py:345:29-348:14: The type of `closest_price` is unknown; it is inferred as an implicit `Any` [unknown-variable-type]
- ERROR rotkehlchen/externalapis/alchemy.py:347:28-29: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/externalapis/gnosispay.py:533:24-31: Type of lambda parameter `tx_hash` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/externalapis/gnosispay.py:533:47-54: The type of this argument is unknown [unknown-argument-type]
- ERROR rotkehlchen/externalapis/hyperliquid.py:1188:24-29: Type of lambda parameter `event` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/history/manager.py:258:24-25: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/mcp/analytics.py:170:47-52: Type of lambda parameter `match` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/mcp/analytics.py:170:75-88: The type of this argument is unknown [unknown-argument-type]
- ERROR rotkehlchen/mcp/registry.py:48:18-51:6: No matching overload found for function `sorted` called with arguments: (list[(...) -> Any], key=(tool: Unknown) -> Any | None) [no-matching-overload]
- ERROR rotkehlchen/mcp/registry.py:50:20-24: Type of lambda parameter `tool` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/mcp/registry.py:50:34-38: The type of this argument is unknown [unknown-argument-type]
- ERROR rotkehlchen/mcp/registry.py:50:61-74: The type of this argument is unknown [unknown-argument-type]
- ERROR rotkehlchen/serialization/deserialize.py:551:24-25: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/tasks/bridges.py:362:52-53: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/tasks/bridges.py:362:59-95: The type of this argument is unknown [unknown-argument-type]
- ERROR rotkehlchen/tests/api/test_addressbook.py:75:76-77: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/tests/api/test_ethereum_transactions.py:209:24-25: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/tests/api/test_ethereum_transactions.py:210:24-25: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/tests/api/test_history_base_entry.py:335:29-30: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/tests/utils/database.py:177:16-17: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/tests/utils/database.py:177:19-20: Type of lambda parameter `y` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/tests/utils/database.py:185:16-17: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/tests/utils/database.py:185:19-20: Type of lambda parameter `y` is unknown [implicit-any-lambda]
- ERROR rotkehlchen/tests/utils/history_base_entry.py:73:82-87: Type of lambda parameter `entry` is unknown [implicit-any-lambda]

steam.py (https://github.com/Gobot1234/steam.py)
- ERROR steam/_gc/state.py:88:55-56: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR steam/_gc/state.py:88:77-78: The type of this argument is unknown [unknown-argument-type]
- ERROR steam/ext/csgo/backpack.py:316:26-29: Type of lambda parameter `msg` is unknown [implicit-any-lambda]
- ERROR steam/ext/csgo/backpack.py:379:26-29: Type of lambda parameter `msg` is unknown [implicit-any-lambda]
- ERROR steam/ext/csgo/backpack.py:404:26-29: Type of lambda parameter `msg` is unknown [implicit-any-lambda]
- ERROR steam/ext/csgo/backpack.py:422:26-29: Type of lambda parameter `msg` is unknown [implicit-any-lambda]
- ERROR steam/ext/csgo/client.py:112:26-29: Type of lambda parameter `msg` is unknown [implicit-any-lambda]
- ERROR steam/ext/csgo/client.py:207:26-29: Type of lambda parameter `msg` is unknown [implicit-any-lambda]
- ERROR steam/ext/csgo/client.py:209:26-37: The type of this argument is unknown [unknown-argument-type]
- ERROR steam/ext/csgo/models.py:149:26-29: Type of lambda parameter `msg` is unknown [implicit-any-lambda]
- ERROR steam/ext/csgo/state.py:234:26-29: Type of lambda parameter `msg` is unknown [implicit-any-lambda]
- ERROR steam/ext/csgo/utils.py:15:26-32: Type of lambda parameter `result` is unknown [implicit-any-lambda]
- ERROR steam/ext/csgo/utils.py:39:20-24: Type of lambda parameter `bits` is unknown [implicit-any-lambda]
- ERROR steam/state.py:1257:26-29: Type of lambda parameter `msg` is unknown [implicit-any-lambda]
- ERROR steam/state.py:3039:59-60: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR steam/state.py:3039:81-82: The type of this argument is unknown [unknown-argument-type]

bokeh (https://github.com/bokeh/bokeh)
- ERROR src/bokeh/command/subcommands/__init__.py:73:42-46: Type of lambda parameter `attr` is unknown [implicit-any-lambda]
- ERROR src/bokeh/core/validation/check.py:201:48-55: Type of lambda parameter `warning` is unknown [implicit-any-lambda]
- ERROR src/bokeh/core/validation/check.py:207:44-49: Type of lambda parameter `error` is unknown [implicit-any-lambda]
- ERROR src/bokeh/model/model.py:336:38-39: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/bokeh/palettes.py:1944:63-66: Type of lambda parameter `arg` is unknown [implicit-any-lambda]
- ERROR src/bokeh/resources.py:446:80-83: Type of lambda parameter `arg` is unknown [implicit-any-lambda]
- ERROR src/bokeh/util/compiler.py:478:64-69: Type of lambda parameter `model` is unknown [implicit-any-lambda]
- ERROR src/bokeh/util/compiler.py:486:56-68: Type of lambda parameter `name_version` is unknown [implicit-any-lambda]
- ERROR src/bokeh/util/compiler.py:577:42-46: Type of lambda parameter `spec` is unknown [implicit-any-lambda]
- ERROR src/bokeh/util/compiler.py:578:42-46: Type of lambda parameter `spec` is unknown [implicit-any-lambda]

flake8 (https://github.com/pycqa/flake8)
- ERROR src/flake8/style_guide.py:250:24-25: Type of lambda parameter `g` is unknown [implicit-any-lambda]
+ ERROR src/flake8/style_guide.py:250:31-41: Implicit conversion of `str | None` to `bool` is not allowed [implicit-bool]

pytest (https://github.com/pytest-dev/pytest)
- ERROR testing/python/raises_group.py:294:32-33: Type of lambda parameter `e` is unknown [implicit-any-lambda]
- ERROR testing/python/raises_group.py:926:44-45: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR testing/typing_checks.py:28:53-54: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/_pytest/cacheprovider.py:458:41-45: Type of lambda parameter `item` is unknown [implicit-any-lambda]
- ERROR src/_pytest/config/__init__.py:1786:47-48: Type of lambda parameter `x` is unknown [implicit-any-lambda]
+ ERROR src/_pytest/main.py:1230:47-66: Implicit conversion of `str | None` to `bool` is not allowed [implicit-bool]
- ERROR src/_pytest/main.py:1230:20-23: Type of lambda parameter `arg` is unknown [implicit-any-lambda]
- ERROR src/_pytest/main.py:1238:32-35: Type of lambda parameter `arg` is unknown [implicit-any-lambda]
- ERROR src/_pytest/runner.py:88:27-28: Type of lambda parameter `x` is unknown [implicit-any-lambda]

jax (https://github.com/google/jax)
- ERROR jax/_src/api_util.py:745:42-48: Type of lambda parameter `name_x` is unknown [implicit-any-lambda]
- ERROR jax/_src/api_util.py:754:33-39: Type of lambda parameter `name_x` is unknown [implicit-any-lambda]
- ERROR jax/_src/compiler.py:444:37-43: Type of lambda parameter `device` is unknown [implicit-any-lambda]
- ERROR jax/_src/core.py:4173:39-40: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR jax/_src/core.py:4173:63-73: The type of this argument is unknown [unknown-argument-type]
- ERROR jax/_src/debugger/core.py:145:62-63: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR jax/_src/flattree.py:287:57-61: Type of lambda parameter `pair` is unknown [implicit-any-lambda]
- ERROR jax/_src/jaxpr_util.py:416:27-28: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR jax/_src/lax/convolution.py:1013:44-45: Type of lambda parameter `i` is unknown [implicit-any-lambda]
- ERROR jax/_src/lax/lax.py:227:37-38: Type of lambda parameter `a` is unknown [implicit-any-lambda]
- ERROR jax/_src/lax/other.py:236:58-59: Type of lambda parameter `k` is unknown [implicit-any-lambda]
- ERROR jax/_src/lax/other.py:236:72-73: The type of this argument is unknown [unknown-argument-type]
- ERROR jax/_src/lax_reference.py:507:41-42: Type of lambda parameter `i` is unknown [implicit-any-lambda]
- ERROR jax/_src/lax_reference.py:511:41-42: Type of lambda parameter `i` is unknown [implicit-any-lambda]
- ERROR jax/_src/mesh_utils.py:136:18-19: Type of lambda parameter `d` is unknown [implicit-any-lambda]
- ERROR jax/_src/mesh_utils.py:136:44-45: The type of this argument is unknown [unknown-argument-type]
- ERROR jax/_src/mesh_utils.py:185:18-19: Type of lambda parameter `d` is unknown [implicit-any-lambda]
- ERROR jax/_src/mesh_utils.py:185:44-45: The type of this argument is unknown [unknown-argument-type]
- ERROR jax/_src/mesh_utils.py:859:50-51: Type of lambda parameter `d` is unknown [implicit-any-lambda]
- ERROR jax/_src/named_sharding.py:429:61-62: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR jax/_src/named_sharding.py:442:61-62: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR jax/_src/pallas/fuser/fuser_utils.py:119:55-56: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR jax/_src/pallas/fuser/fuser_utils.py:119:62-63: The type of this argument is unknown [unknown-argument-type]
- ERROR jax/_src/pallas/mosaic_gpu/lowering.py:281:14-15: Type of lambda parameter `a` is unknown [implicit-any-lambda]
- ERROR jax/_src/pallas/mosaic_gpu/lowering.py:281:17-18: Type of lambda parameter `b` is unknown [implicit-any-lambda]
- ERROR jax/_src/test_util.py:1557:55-56: Type of lambda parameter `d` is unknown [implicit-any-lambda]
- ERROR jax/_src/util.py:588:59-61: Type of lambda parameter `kv` is unknown [implicit-any-lambda]
- ERROR jax/experimental/jax2tf/tests/jax_primitives_coverage_test.py:132:49-53: Type of lambda parameter `pair` is unknown [implicit-any-lambda]
- ERROR jax/experimental/jax2tf/tests/jax_primitives_coverage_test.py:132:67-72: The type of this argument is unknown [unknown-argument-type]
- ERROR jax/experimental/mosaic/gpu/dialect_lowering.py:1087:60-62: Type of lambda parameter `es` is unknown [implicit-any-lambda]
- ERROR jax/experimental/mosaic/gpu/dialect_lowering.py:1156:48-49: Type of lambda parameter `i` is unknown [implicit-any-lambda]
- ERROR jax/experimental/mosaic/gpu/dialect_lowering.py:1241:48-49: Type of lambda parameter `i` is unknown [implicit-any-lambda]
- ERROR jax/experimental/mosaic/gpu/layout_inference.py:2376:36-38: Type of lambda parameter `kv` is unknown [implicit-any-lambda]
- ERROR jax/experimental/mosaic/gpu/layout_inference.py:2376:43-58: The type of this argument is unknown [unknown-argument-type]
- ERROR jax/experimental/mosaic/gpu/layout_inference.py:2379:41-43: Type of lambda parameter `kv` is unknown [implicit-any-lambda]
- ERROR jax/experimental/mosaic/gpu/layout_inference.py:2383:65-67: Type of lambda parameter `kv` is unknown [implicit-any-lambda]
- ERROR jax/experimental/mosaic/gpu/layout_inference.py:2387:52-54: Type of lambda parameter `kv` is unknown [implicit-any-lambda]
- ERROR jax/experimental/mosaic/gpu/layout_inference.py:2429:46-48: The type of this argument is unknown [unknown-argument-type]
- ERROR jax/experimental/mosaic/gpu/layout_inference.py:2432:47-49: The type of this argument is unknown [unknown-argument-type]
- ERROR jax/experimental/mosaic/gpu/layout_inference.py:2435:51-53: The type of this argument is unknown [unknown-argument-type]
- ERROR jax/experimental/mosaic/gpu/layout_inference.py:2438:52-54: The type of this argument is unknown [unknown-argument-type]
- ERROR jax/experimental/mosaic/gpu/layout_inference.py:2459:50-52: The type of this argument is unknown [unknown-argument-type]
- ERROR jax/experimental/mosaic/gpu/layout_inference.py:2462:51-53: The type of this argument is unknown [unknown-argument-type]
- ERROR jax/experimental/mosaic/gpu/layout_inference.py:2466:33-35: The type of this argument is unknown [unknown-argument-type]
- ERROR jax/experimental/mosaic/gpu/profiler.py:337:40-41: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR jax/experimental/mosaic/gpu/utils.py:2328:67-68: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR jax/experimental/multihost_utils.py:677:29-30: Type of lambda parameter `d` is unknown [implicit-any-lambda]
- ERROR jax/experimental/pallas/ops/tpu/splash_attention/splash_attention_mask_info.py:632:72-73: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR jax/experimental/pallas/ops/tpu/splash_attention/splash_attention_mask_info.py:715:69-70: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR jax/experimental/roofline/rooflines.py:481:41-42: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR jax/experimental/roofline/rooflines.py:675:48-49: Type of lambda parameter `x` is unknown [implicit-any-lambda]

spark (https://github.com/apache/spark)
- ERROR python/pyspark/instrumentation_utils.py:170:67-68: Type of lambda parameter `o` is unknown [implicit-any-lambda]
- ERROR python/pyspark/instrumentation_utils.py:184:62-63: Type of lambda parameter `o` is unknown [implicit-any-lambda]
- ERROR python/pyspark/ml/tests/test_feature.py:231:88-89: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/ml/tests/test_feature.py:247:72-73: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/ml/tests/test_feature.py:250:71-72: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/base.py:1756:56-57: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/base.py:1756:68-69: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/pandas/base.py:1764:24-30: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/pandas/base.py:1768:32-38: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/pandas/base.py:1786:68-69: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/pandas/frame.py:7127:50-51: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/indexing.py:1131:34-35: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/indexing.py:1131:37-38: Type of lambda parameter `y` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/indexing.py:1202:34-35: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/indexing.py:1202:37-38: Type of lambda parameter `y` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/indexing.py:1240:27-28: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/indexing.py:1240:30-31: Type of lambda parameter `y` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/indexing.py:1706:30-31: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/indexing.py:1706:33-34: Type of lambda parameter `y` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/namespace.py:3505:20-23: Type of lambda parameter `lft` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/namespace.py:3505:25-28: Type of lambda parameter `rgt` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/frame/test_spark.py:280:48-49: Type of lambda parameter `o` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/groupby/test_apply_func.py:286:48-49: Type of lambda parameter `_` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/groupby/test_apply_func.py:294:27-29: Type of lambda parameter `df` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/groupby/test_apply_func.py:309:48-49: Type of lambda parameter `_` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/groupby/test_apply_func.py:317:27-29: Type of lambda parameter `df` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/groupby/test_missing.py:79:55-56: Type of lambda parameter `o` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/groupby/test_missing.py:105:52-53: Type of lambda parameter `o` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/indexes/test_missing.py:131:44-45: Type of lambda parameter `o` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/indexes/test_missing.py:158:49-50: Type of lambda parameter `o` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/indexes/test_missing.py:185:52-53: Type of lambda parameter `o` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/indexes/test_missing.py:201:52-53: Type of lambda parameter `o` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/indexes/test_rename.py:65:40-41: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/indexes/test_rename.py:65:53-54: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/pandas/tests/indexes/test_rename.py:75:40-41: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/indexes/test_rename.py:75:53-54: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/pandas/tests/resample/test_missing.py:96:57-58: Type of lambda parameter `o` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/resample/test_missing.py:112:54-55: Type of lambda parameter `o` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/series/test_series.py:234:73-74: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/series/test_series.py:235:85-86: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/series/test_series.py:461:45-46: Type of lambda parameter `o` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/test_categorical.py:314:43-45: Type of lambda parameter `df` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/test_categorical.py:322:50-52: Type of lambda parameter `df` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/window/test_missing.py:135:48-49: Type of lambda parameter `o` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/window/test_missing.py:171:46-47: Type of lambda parameter `o` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/window/test_missing.py:206:56-57: Type of lambda parameter `o` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/window/test_missing.py:344:55-56: Type of lambda parameter `o` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/window/test_missing.py:380:53-54: Type of lambda parameter `o` is unknown [implicit-any-lambda]
- ERROR python/pyspark/pandas/tests/window/test_missing.py:415:63-64: Type of lambda parameter `o` is unknown [implicit-any-lambda]
+ ERROR python/pyspark/sql/conversion.py:1987:38-48: Cannot index into `NAType` [bad-index]
+ ERROR python/pyspark/sql/conversion.py:1987:50-63: Cannot index into `NAType` [bad-index]
+ ERROR python/pyspark/sql/conversion.py:1992:45-53: Cannot index into `NAType` [bad-index]
+ ERROR python/pyspark/sql/conversion.py:1992:55-64: Cannot index into `NAType` [bad-index]
+ ERROR python/pyspark/sql/conversion.py:1997:44-52: Cannot index into `NAType` [bad-index]
+ ERROR python/pyspark/sql/conversion.py:1997:54-63: Cannot index into `NAType` [bad-index]
- ERROR python/pyspark/sql/metrics.py:173:52-53: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/connect/test_connect_readwriter.py:187:62-63: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/connect/test_connect_readwriter.py:196:62-63: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/connect/test_connect_readwriter.py:223:62-63: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/connect/test_connect_readwriter.py:232:62-63: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/connect/test_connect_readwriter.py:262:62-63: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/connect/test_connect_readwriter.py:276:62-63: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/pandas/helper/helper_pandas_transform_with_state.py:2411:93-94: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_catalog.py:97:76-77: Type of lambda parameter `t` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_catalog.py:99:78-79: Type of lambda parameter `t` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_catalog.py:102:73-74: Type of lambda parameter `t` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_catalog.py:105:81-82: Type of lambda parameter `t` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_catalog.py:107:91-92: Type of lambda parameter `t` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_catalog.py:109:81-82: Type of lambda parameter `t` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_catalog.py:147:29-38: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/sql/tests/test_catalog.py:159:29-38: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/sql/tests/test_catalog.py:171:29-38: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/sql/tests/test_catalog.py:183:29-49: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/sql/tests/test_catalog.py:195:29-49: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/sql/tests/test_catalog.py:207:29-44: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/sql/tests/test_catalog.py:219:29-44: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/sql/tests/test_catalog.py:231:29-55: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/sql/tests/test_catalog.py:356:89-90: Type of lambda parameter `c` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_catalog.py:359:78-79: Type of lambda parameter `c` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_catalog.py:388:78-79: Type of lambda parameter `c` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_datasources.py:103:62-63: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_datasources.py:112:62-63: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_datasources.py:162:62-63: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_datasources.py:171:62-63: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_datasources.py:249:62-63: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_datasources.py:263:62-63: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_functions.py:301:36-37: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_functions.py:2181:53-54: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_utils.py:320:57-58: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_utils.py:320:64-65: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/sql/tests/test_utils.py:321:57-58: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_utils.py:321:64-65: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/sql/tests/test_zip.py:125:52-53: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_zip.py:127:20-21: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/sql/tests/test_zip.py:150:52-53: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR python/pyspark/sql/tests/test_zip.py:152:20-21: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/sql/variant_utils.py:791:32-33: Type of lambda parameter `f` is unknown [implicit-any-lambda]
- ERROR python/pyspark/streaming/dstream.py:167:38-41: Type of lambda parameter `rdd` is unknown [implicit-any-lambda]
- ERROR python/pyspark/streaming/dstream.py:215:38-41: Type of lambda parameter `rdd` is unknown [implicit-any-lambda]
- ERROR python/pyspark/streaming/dstream.py:339:38-41: Type of lambda parameter `rdd` is unknown [implicit-any-lambda]
- ERROR python/pyspark/streaming/dstream.py:469:38-41: Type of lambda parameter `rdd` is unknown [implicit-any-lambda]
- ERROR python/pyspark/streaming/dstream.py:490:42-43: Type of lambda parameter `a` is unknown [implicit-any-lambda]
- ERROR python/pyspark/streaming/dstream.py:490:45-46: Type of lambda parameter `b` is unknown [implicit-any-lambda]
- ERROR python/pyspark/streaming/dstream.py:506:20-21: Type of lambda parameter `a` is unknown [implicit-any-lambda]
- ERROR python/pyspark/streaming/dstream.py:506:23-24: Type of lambda parameter `b` is unknown [implicit-any-lambda]
- ERROR python/pyspark/streaming/dstream.py:524:42-43: Type of lambda parameter `a` is unknown [implicit-any-lambda]
- ERROR python/pyspark/streaming/dstream.py:524:45-46: Type of lambda parameter `b` is unknown [implicit-any-lambda]
- ERROR python/pyspark/streaming/dstream.py:540:42-43: Type of lambda parameter `a` is unknown [implicit-any-lambda]
- ERROR python/pyspark/streaming/dstream.py:540:45-46: Type of lambda parameter `b` is unknown [implicit-any-lambda]
- ERROR python/pyspark/streaming/dstream.py:556:42-43: Type of lambda parameter `a` is unknown [implicit-any-lambda]
- ERROR python/pyspark/streaming/dstream.py:556:45-46: Type of lambda parameter `b` is unknown [implicit-any-lambda]
- ERROR python/pyspark/streaming/dstream.py:572:42-43: Type of lambda parameter `a` is unknown [implicit-any-lambda]
- ERROR python/pyspark/streaming/dstream.py:572:45-46: Type of lambda parameter `b` is unknown [implicit-any-lambda]
- ERROR python/pyspark/testing/utils.py:660:55-56: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/testing/utils.py:661:59-60: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/testing/utils.py:1225:54-55: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/testing/utils.py:1225:61-62: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/testing/utils.py:1226:58-59: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/testing/utils.py:1226:65-66: The type of this argument is unknown [unknown-argument-type]
- ERROR python/pyspark/tests/test_shuffle.py:219:49-50: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/tests/test_shuffle.py:221:36-37: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/tests/test_shuffle.py:239:49-50: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/tests/test_shuffle.py:243:36-37: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/worker.py:3254:89-90: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/worker.py:3284:85-86: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/worker.py:3431:89-90: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/worker.py:3488:85-86: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/worker.py:3813:92-93: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/worker.py:3928:85-86: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/worker.py:4067:81-82: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR python/pyspark/worker.py:4104:85-86: Type of lambda parameter `x` is unknown [implicit-any-lambda]

cwltool (https://github.com/common-workflow-language/cwltool)
+ ERROR cwltool/executors.py:158:1-2: Unused `# type: ignore` comment [unused-type-ignore]
- ERROR tests/test_examples.py:444:34-35: Type of lambda parameter `k` is unknown [implicit-any-lambda]
- ERROR tests/test_examples.py:509:35-36: Type of lambda parameter `k` is unknown [implicit-any-lambda]
- ERROR tests/test_examples.py:550:34-35: Type of lambda parameter `k` is unknown [implicit-any-lambda]

python-chess (https://github.com/niklasf/python-chess)
- ERROR chess/__init__.py:467:72-74: Type of lambda parameter `bb` is unknown [implicit-any-lambda]
- ERROR chess/__init__.py:467:80-82: The type of this argument is unknown [unknown-argument-type]
- ERROR chess/gaviota.py:1333:40-41: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR chess/gaviota.py:1747:66-75: Type of lambda parameter `cache_key` is unknown [implicit-any-lambda]
- ERROR chess/gaviota.py:1747:94-103: The type of this argument is unknown [unknown-argument-type]
- ERROR chess/polyglot.py:450:117-122: Type of lambda parameter `entry` is unknown [implicit-any-lambda]

pyppeteer (https://github.com/pyppeteer/pyppeteer)
- ERROR pyppeteer/launcher.py:102:55-58: Type of lambda parameter `arg` is unknown [implicit-any-lambda]
- ERROR pyppeteer/launcher.py:102:60-63: The type of this argument is unknown [unknown-argument-type]

cryptography (https://github.com/pyca/cryptography)
- ERROR src/cryptography/hazmat/primitives/serialization/ssh.py:1523:48-49: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/cryptography/hazmat/primitives/serialization/ssh.py:1524:42-43: Type of lambda parameter `x` is unknown [implicit-any-lambda]

alerta (https://github.com/alerta/alerta)
- ERROR alerta/models/alert.py:149:78-79: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR alerta/views/__init__.py:41:120-121: Type of lambda parameter `k` is unknown [implicit-any-lambda]

altair (https://github.com/vega/altair)
- ERROR altair/utils/schemapi.py:467:46-47: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR altair/utils/schemapi.py:467:53-62: The type of this argument is unknown [unknown-argument-type]

prefect (https://github.com/PrefectHQ/prefect)
- ERROR src/integrations/prefect-aws/prefect_aws/workers/ecs_worker.py:1631:62-63: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/integrations/prefect-aws/prefect_aws/workers/ecs_worker.py:1637:58-59: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/integrations/prefect-aws/prefect_aws/workers/ecs_worker.py:1643:67-68: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/integrations/prefect-aws/tests/workers/test_ecs_worker.py:3030:39-45: Type of lambda parameter `secret` is unknown [implicit-any-lambda]
- ERROR src/integrations/prefect-kubernetes/integration_tests/src/prefect_kubernetes_integration_tests/utils/k8s.py:117:32-33: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/integrations/prefect-kubernetes/integration_tests/src/prefect_kubernetes_integration_tests/utils/k8s.py:124:32-49: Returning implicit Any from function declared to return "str" [no-any-return-implicit]
- ERROR src/integrations/prefect-kubernetes/prefect_kubernetes/observer.py:411:28-29: Type of lambda parameter `p` is unknown [implicit-any-lambda]
- ERROR src/integrations/prefect-kubernetes/prefect_kubernetes/observer.py:415:28-45: The type of `pod_name` is unknown; it is inferred as an implicit `Any` [unknown-variable-type]
- ERROR src/integrations/prefect-kubernetes/prefect_kubernetes/observer.py:417:21-24: The type of this argument is unknown [unknown-argument-type]
- ERROR src/integrations/prefect-kubernetes/prefect_kubernetes/observer.py:418:21-29: The type of this argument is unknown [unknown-argument-type]
- ERROR src/integrations/prefect-redis/prefect_redis/ordering.py:180:24-25: Type of lambda parameter `f` is unknown [implicit-any-lambda]
- ERROR src/prefect/_sdk/models.py:139:47-48: Type of lambda parameter `d` is unknown [implicit-any-lambda]
- ERROR src/prefect/_sdk/renderer.py:389:66-68: Type of lambda parameter `wp` is unknown [implicit-any-lambda]
- ERROR src/prefect/_vendor/croniter/croniter.py:1114:33-34: Type of lambda parameter `i` is unknown [implicit-any-lambda]
- ERROR src/prefect/bundles/_zip_builder.py:94:49-50: Type of lambda parameter `f` is unknown [implicit-any-lambda]
- ERROR src/prefect/bundles/_zip_builder.py:94:56-84: The type of this argument is unknown [unknown-argument-type]
- ERROR src/prefect/bundles/_zip_builder.py:167:36-37: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/prefect/cli/_prompts.py:106:37-38: Type of lambda parameter `x` is unknown [implicit-any-lambda]
+ ERROR src/prefect/cli/artifact.py:93:31-63: No matching overload found for function `sorted` called with arguments: (list[Artifact] | list[ArtifactCollection], key=(x: Unknown) -> Unknown) [no-matching-overload]
- ERROR src/prefect/cli/artifact.py:94:64-80: Implicit conversion of `Unknown | None` to `bool` is not allowed [implicit-bool]
- ERROR src/prefect/cli/artifact.py:96:45-63: Object of class `Artifact` has no attribute `latest_id` [missing-attribute]
- ERROR src/prefect/cli/block.py:301:32-33: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/prefect/cli/block.py:301:46-58: The type of this argument is unknown [unknown-argument-type]
- ERROR src/prefect/cli/block.py:517:57-58: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/prefect/cli/cloud/__init__.py:346:55-64: Type of lambda parameter `workspace` is unknown [implicit-any-lambda]
- ERROR src/prefect/cli/cloud/asset.py:102:48-49: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/prefect/cli/concurrency_limit.py:157:40-41: Type of lambda parameter `c` is unknown [implicit-any-lambda]
+ ERROR src/prefect/cli/concurrency_limit.py:157:43-52: Implicit conversion of `Unknown | None` to `bool` is not allowed [implicit-bool]
- ERROR src/prefect/cli/config.py:212:31-32: Type of lambda parameter `n` is unknown [implicit-any-lambda]
- ERROR src/prefect/cli/config.py:213:66-73: Type of lambda parameter `setting` is unknown [implicit-any-lambda]
- ERROR src/prefect/cli/config.py:342:58-65: Type of lambda parameter `setting` is unknown [implicit-any-lambda]
+ ERROR src/prefect/cli/flow_run.py:302:31-81: No matching overload found for function `sorted` called with arguments: (list[FlowRun], key=(d: Unknown) -> Unknown, reverse=Literal[True]) [no-matching-overload]
- ERROR src/prefect/cli/flow_run.py:305:17-45: Object of class `NoneType` has no attribute `state_details` [missing-attribute]
- ERROR src/prefect/cli/flow_run.py:306:20-47: Object of class `NoneType` has no attribute `is_scheduled` [missing-attribute]
- ERROR src/prefect/cli/flow_run.py:307:22-46: Object of class `NoneType` has no attribute `timestamp` [missing-attribute]
- ERROR src/prefect/cli/flow_run.py:312:20-35: Unnecessary `str()` call; argument is already of type `str` [unnecessary-type-conversion]
- ERROR src/prefect/cli/flow_run.py:313:21-40: Object of class `NoneType` has no attribute `type` [missing-attribute]
- ERROR src/prefect/cli/global_concurrency_limit.py:80:56-57: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/prefect/cli/task_run.py:194:35-36: Type of lambda parameter `d` is unknown [implicit-any-lambda]
- ERROR src/prefect/cli/variable.py:85:54-55: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/prefect/events/related.py:220:24-25: Type of lambda parameter `k` is unknown [implicit-any-lambda]
- ERROR src/prefect/runner/_scheduled_run_poller.py:123:24-27: Type of lambda parameter `run` is unknown [implicit-any-lambda]
- ERROR src/prefect/server/events/ordering/db.py:97:49-50: Type of lambda parameter `e` is unknown [implicit-any-lambda]
- ERROR src/prefect/server/events/ordering/db.py:121:49-50: Type of lambda parameter `e` is unknown [implicit-any-lambda]
- ERROR src/prefect/server/events/ordering/memory.py:147:51-52: Type of lambda parameter `f` is unknown [implicit-any-lambda]
- ERROR src/prefect/server/events/ordering/memory.py:156:51-52: Type of lambda parameter `f` is unknown [implicit-any-lambda]
- ERROR src/prefect/server/events/ordering/memory.py:185:47-48: Type of lambda parameter `f` is unknown [implicit-any-lambda]
- ERROR src/prefect/server/events/schemas/automations.py:227:62-63: Type of lambda parameter `f` is unknown [implicit-any-lambda]
- ERROR src/prefect/server/models/workers.py:625:52-54: Type of lambda parameter `wq` is unknown [implicit-any-lambda]
- ERROR src/prefect/server/models/workers.py:625:71-76: The type of this argument is unknown [unknown-argument-type]
- ERROR src/prefect/server/orchestration/core_policy.py:398:40-43: Type of lambda parameter `lim` is unknown [implicit-any-lambda]
- ERROR src/prefect/server/services/task_run_recorder.py:225:35-37: Type of lambda parameter `tr` is unknown [implicit-any-lambda]
+ ERROR src/prefect/server/services/task_run_recorder.py:225:39-69: Object of class `NoneType` has no attribute `timestamp` [missing-attribute]
- ERROR src/prefect/server/services/task_run_recorder.py:263:20-22: Type of lambda parameter `tr` is unknown [implicit-any-lambda]
- ERROR src/prefect/server/services/task_run_recorder.py:263:45-59: The type of this argument is unknown [unknown-argument-type]
- ERROR src/prefect/testing/utilities.py:69:49-53: Type of lambda parameter `item` is unknown [implicit-any-lambda]
- ERROR src/prefect/testing/utilities.py:78:45-49: Type of lambda parameter `item` is unknown [implicit-any-lambda]
- ERROR src/prefect/utilities/services.py:129:28-32: Type of lambda parameter `pair` is unknown [implicit-any-lambda]

colour (https://github.com/colour-science/colour)
- ERROR colour/examples/contrast/examples_contrast.py:77:24-25: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR colour/examples/contrast/examples_contrast.py:79:25-28: The type of this argument is unknown [unknown-argument-type]
- ERROR colour/plotting/quality.py:172:72-73: Type of lambda parameter `s` is unknown [implicit-any-lambda]

pyinstrument (https://github.com/joerick/pyinstrument)
- ERROR pyinstrument/frame.py:299:64-65: Type of lambda parameter `a` is unknown [implicit-any-lambda]
+ ERROR pyinstrument/processors.py:90:1-2: Unused `# type: ignore` comment [unused-type-ignore]
- ERROR pyinstrument/renderers/console.py:227:51-55: Type of lambda parameter `item` is unknown [implicit-any-lambda]

urllib3 (https://github.com/urllib3/urllib3)
- ERROR dummyserver/app.py:381:40-41: Type of lambda parameter `w` is unknown [implicit-any-lambda]
- ERROR src/urllib3/util/url.py:292:16-21: Type of lambda parameter `match` is unknown [implicit-any-lambda]
- ERROR src/urllib3/util/url.py:438:35-40: Type of lambda parameter `match` is unknown [implicit-any-lambda]

twine (https://github.com/pypa/twine)
- ERROR twine/commands/__init__.py:35:27-28: Type of lambda parameter `x` is unknown [implicit-any-lambda]

scikit-learn (https://github.com/scikit-learn/scikit-learn)
- ERROR sklearn/callback/_scoring_monitor.py:295:30-33: Type of lambda parameter `log` is unknown [implicit-any-lambda]
- ERROR sklearn/cluster/_mean_shift.py:532:24-27: Type of lambda parameter `tup` is unknown [implicit-any-lambda]
- ERROR sklearn/datasets/_samples_generator.py:1832:29-33: Type of lambda parameter `size` is unknown [implicit-any-lambda]
- ERROR sklearn/feature_selection/_sequential.py:329:50-61: Type of lambda parameter `feature_idx` is unknown [implicit-any-lambda]
- ERROR sklearn/feature_selection/_sequential.py:329:70-81: The type of this argument is unknown [unknown-argument-type]
- ERROR sklearn/impute/_base.py:52:42-43: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR sklearn/linear_model/tests/test_linear_loss.py:298:16-20: Type of lambda parameter `coef` is unknown [implicit-any-lambda]
- ERROR sklearn/linear_model/tests/test_linear_loss.py:299:13-23: The type of this argument is unknown [unknown-argument-type]
- ERROR sklearn/linear_model/tests/test_linear_loss.py:310:16-20: Type of lambda parameter `coef` is unknown [implicit-any-lambda]
- ERROR sklearn/linear_model/tests/test_linear_loss.py:311:13-27: The type of this argument is unknown [unknown-argument-type]
- ERROR sklearn/utils/sparsefuncs.py:739:23-24: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR sklearn/utils/sparsefuncs.py:740:23-24: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR sklearn/utils/sparsefuncs.py:741:24-25: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR sklearn/utils/sparsefuncs.py:742:24-25: Type of lambda parameter `x` is unknown [implicit-any-lambda]

Expression (https://github.com/cognitedata/Expression)
- ERROR expression/collections/seq.py:587:40-41: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR expression/collections/seq.py:587:56-57: The type of this argument is unknown [unknown-argument-type]
- ERROR expression/extra/parser.py:412:20-30: Type of lambda parameter `digit_list` is unknown [implicit-any-lambda]
- ERROR expression/extra/parser.py:412:40-50: The type of this argument is unknown [unknown-argument-type]
- ERROR expression/extra/parser.py:440:20-26: Type of lambda parameter `digits` is unknown [implicit-any-lambda]
- ERROR expression/extra/parser.py:440:36-42: The type of this argument is unknown [unknown-argument-type]
- ERROR tests/test_block.py:316:38-39: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR tests/test_pipe.py:22:13-37: The type of `value` is unknown; it is inferred as an implicit `Any` [unknown-variable-type]
- ERROR tests/test_pipe.py:22:28-29: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR tests/test_pipe.py:47:34-35: Type of lambda parameter `x` is unknown [implicit-any-lambda]

materialize (https://github.com/MaterializeInc/materialize)
- ERROR ci/test/lint-buf/generate-buf-config.py:82:54-58: Type of lambda parameter `file` is unknown [implicit-any-lambda]
- ERROR test/cargo-fuzz/mzcompose.py:865:50-51: Type of lambda parameter `c` is unknown [implicit-any-lambda]
- ERROR test/cargo-fuzz/mzcompose.py:865:68-69: The type of this argument is unknown [unknown-argument-type]
- ERROR test/cargo-fuzz/mzcompose.py:869:49-50: Type of lambda parameter `i` is unknown [implicit-any-lambda]
- ERROR test/cargo-fuzz/mzcompose.py:869:58-59: The type of this argument is unknown [unknown-argument-type]
- ERROR test/cloudtest/test_upgrade.py:98:28-30: Type of lambda parameter `ch` is unknown [implicit-any-lambda]
- ERROR test/data-ingest/mzcompose.py:100:24-25: Type of lambda parameter `w` is unknown [implicit-any-lambda]
- ERROR test/doc-examples/mzcompose.py:80:20-21: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR test/doc-examples/mzcompose.py:83:20-21: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR test/limits/mzcompose.py:2257:24-25: Type of lambda parameter `w` is unknown [implicit-any-lambda]
- ERROR test/parallel-benchmark/mzcompose.py:839:31-34: Type of lambda parameter `cls` is unknown [implicit-any-lambda]
- ERROR test/platform-checks/mzcompose.py:272:67-68: Type of lambda parameter `s` is unknown [implicit-any-lambda]
- ERROR test/platform-checks/mzcompose.py:283:28-30: Type of lambda parameter `ch` is unknown [implicit-any-lambda]
- ERROR test/scalability/mzcompose.py:376:38-41: Type of lambda parameter `cls` is unknown [implicit-any-lambda]
- ERROR test/sqlsmith/mzcompose.py:297:52-53: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR misc/python/materialize/cli/mzcompose.py:345:62-66: Type of lambda parameter `item` is unknown [implicit-any-lambda]
- ERROR misc/python/materialize/cli/scratch/create.py:42:60-61: Type of lambda parameter `f` is unknown [implicit-any-lambda]
- ERROR misc/python/materialize/cli/scratch/create.py:42:76-82: The type of this argument is unknown [unknown-argument-type]
- ERROR misc/python/materialize/mzbuild.py:1366:66-67: Type of lambda parameter `d` is unknown [implicit-any-lambda]
- ERROR misc/python/materialize/mzbuild.py:1750:56-61: Type of lambda parameter `image` is unknown [implicit-any-lambda]
- ERROR misc/python/materialize/mzcompose/composition.py:1908:31-35: Type of lambda parameter `part` is unknown [implicit-any-lambda]
- ERROR misc/python/materialize/mzcompose/composition.py:1908:54-58: The type of this argument is unknown [unknown-argument-type]
- ERROR misc/python/materialize/parallel_workload/parallel_workload.py:567:59-62: Type of lambda parameter `cls` is unknown [implicit-any-lambda]

freqtrade (https://github.com/freqtrade/freqtrade)
- ERROR freqtrade/commands/data_commands.py:143:35-36: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/commands/data_commands.py:143:66-70: The type of this argument is unknown [unknown-argument-type]
- ERROR freqtrade/commands/data_commands.py:173:44-45: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/commands/data_commands.py:173:75-79: The type of this argument is unknown [unknown-argument-type]
- ERROR freqtrade/commands/data_commands.py:226:79-80: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/commands/deploy_ui.py:75:33-34: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/commands/list_commands.py:166:54-55: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/commands/list_commands.py:197:48-49: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/commands/list_commands.py:215:48-49: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/data/btanalysis/trade_parallelism.py:124:48-49: Type of lambda parameter `x` is unknown [implicit-any-lambda]
+ ERROR freqtrade/data/btanalysis/trade_parallelism.py:124:51-78: Cannot index into `int` [bad-index]
+ ERROR freqtrade/data/btanalysis/trade_parallelism.py:124:51-78: Cannot index into `str` [bad-index]
- ERROR freqtrade/data/converter/converter.py:256:46-47: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/exchange/exchange.py:2671:40-41: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/exchange/exchange.py:3016:52-53: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/freqai/freqai_interface.py:812:51-52: Type of lambda parameter `k` is unknown [implicit-any-lambda]
- ERROR freqtrade/optimize/backtesting.py:1968:28-29: Type of lambda parameter `c` is unknown [implicit-any-lambda]
- ERROR freqtrade/optimize/backtesting.py:1973:32-34: Type of lambda parameter `kv` is unknown [implicit-any-lambda]
- ERROR freqtrade/optimize/optimize_reports/bt_output.py:203:62-63: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/optimize/optimize_reports/bt_output.py:204:63-64: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/optimize/optimize_reports/optimize_reports.py:271:52-53: Type of lambda parameter `k` is unknown [implicit-any-lambda]
- ERROR freqtrade/optimize/optimize_reports/optimize_reports.py:311:56-57: Type of lambda parameter `k` is unknown [implicit-any-lambda]
- ERROR freqtrade/optimize/optimize_reports/optimize_reports.py:637:24-25: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/optimize/optimize_reports/optimize_reports.py:645:24-25: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/persistence/pairlock_middleware.py:115:42-46: Type of lambda parameter `lock` is unknown [implicit-any-lambda]
+ ERROR freqtrade/plugins/pairlist/PercentChangePairList.py:233:32-237:10: No matching overload found for function `sorted` called with arguments: (list[SymbolWithPercentage], reverse=bool, key=(t: Unknown) -> Unknown) [no-matching-overload]
- ERROR freqtrade/plugins/pairlist/VolatilityFilter.py:134:28-29: Type of lambda parameter `p` is unknown [implicit-any-lambda]
- ERROR freqtrade/plugins/pairlist/VolatilityFilter.py:134:43-44: The type of this argument is unknown [unknown-argument-type]
- ERROR freqtrade/plugins/pairlist/VolumePairList.py:307:76-77: Type of lambda parameter `t` is unknown [implicit-any-lambda]
- ERROR freqtrade/plugins/pairlist/rangestabilityfilter.py:130:28-29: Type of lambda parameter `p` is unknown [implicit-any-lambda]
- ERROR freqtrade/plugins/pairlist/rangestabilityfilter.py:130:43-44: The type of this argument is unknown [unknown-argument-type]
- ERROR freqtrade/resolvers/strategy_resolver.py:139:32-33: Type of lambda parameter `t` is unknown [implicit-any-lambda]
- ERROR freqtrade/rpc/api_server/api_pairlists.py:33:46-47: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/rpc/api_server/api_webserver.py:30:48-49: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/rpc/api_server/api_webserver.py:54:56-57: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/rpc/api_server/api_webserver.py:72:40-41: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/rpc/api_server/api_webserver.py:100:54-55: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR freqtrade/strategy/informative_decorator.py:157:41-47: Type of lambda parameter `column` is unknown [implicit-any-lambda]
- ERROR freqtrade/strategy/informative_decorator.py:157:59-72: The type of this argument is unknown [unknown-argument-type]

more-itertools (https://github.com/more-itertools/more-itertools)
- ERROR more_itertools/more.py:1349:33-34: Type of lambda parameter `i` is unknown [implicit-any-lambda]
- ERROR more_itertools/more.py:1349:44-45: The type of this argument is unknown [unknown-argument-type]

pwndbg (https://github.com/pwndbg/pwndbg)
- ERROR pwndbg/aglib/godbg.py:749:36-37: Type of lambda parameter `f` is unknown [implicit-any-lambda]
- ERROR pwndbg/aglib/godbg.py:1136:37-38: Type of lambda parameter `t` is unknown [implicit-any-lambda]
- ERROR pwndbg/aglib/godbg.py:1136:44-48: The type of this argument is unknown [unknown-argument-type]
- ERROR pwndbg/aglib/godbg.py:1138:37-38: Type of lambda parameter `t` is unknown [implicit-any-lambda]
- ERROR pwndbg/aglib/macho.py:602:36-41: Type of lambda parameter `image` is unknown [implicit-any-lambda]
- ERROR pwndbg/aglib/nearpc.py:238:31-32: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR pwndbg/aglib/nearpc.py:238:42-43: The type of this argument is unknown [unknown-argument-type]
- ERROR pwndbg/aglib/stack.py:154:31-32: Type of lambda parameter `t` is unknown [implicit-any-lambda]
- ERROR pwndbg/aglib/vmmap.py:221:41-42: Type of lambda parameter `p` is unknown [implicit-any-lambda]
- ERROR pwndbg/aglib/vmmap.py:261:41-42: Type of lambda parameter `p` is unknown [implicit-any-lambda]
- ERROR pwndbg/commands/attachp.py:166:32-33: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR pwndbg/commands/context.py:540:29-30: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR pwndbg/commands/elf.py:185:36-37: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR pwndbg/commands/got.py:163:29-30: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR pwndbg/commands/got_tracking.py:240:55-56: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR pwndbg/commands/ignore.py:37:34-36: Type of lambda parameter `bp` is unknown [implicit-any-lambda]
- ERROR pwndbg/commands/ktask.py:325:29-35: Type of lambda parameter `thread` is unknown [implicit-any-lambda]
- ERROR pwndbg/commands/pie.py:26:40-44: Type of lambda parameter `page` is unknown [implicit-any-lambda]
- ERROR pwndbg/commands/pwndbg_.py:72:67-68: Type of lambda parameter `c` is unknown [implicit-any-lambda]
- ERROR pwndbg/commands/vmmap.py:285:59-63: Type of lambda parameter `page` is unknown [implicit-any-lambda]
- ERROR pwndbg/dintegration/__init__.py:389:50-51: Type of lambda parameter `f` is unknown [implicit-any-lambda]
- ERROR pwndbg/dintegration/__init__.py:408:50-51: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR pwndbg/dintegration/__init__.py:982:83-84: Type of lambda parameter `f` is unknown [implicit-any-lambda]
- ERROR pwndbg/dintegration/__init__.py:990:81-82: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR pwndbg/gdblib/vmmap.py:176:27-31: Type of lambda parameter `page` is unknown [implicit-any-lambda]
- ERROR pwndbg/lib/proc_fd.py:155:39-40: Type of lambda parameter `t` is unknown [implicit-any-lambda]
- ERROR pwndbg/lib/tips.py:134:37-38: Type of lambda parameter `s` is unknown [implicit-any-lambda]
- ERROR pwndbg/lib/tips.py:134:53-68: The type of this argument is unknown [unknown-argument-type]

setuptools (https://github.com/pypa/setuptools)
- ERROR setuptools/_distutils/tests/test_build_ext.py:114:54-62: Type of lambda parameter `lib_path` is unknown [implicit-any-lambda]
- ERROR setuptools/_distutils/tests/test_build_ext.py:114:68-76: The type of this argument is unknown [unknown-argument-type]
- ERROR setuptools/_vendor/autocommand/autoparse.py:204:20-25: Type of lambda parameter `param` is unknown [implicit-any-lambda]
- ERROR setuptools/_vendor/backports/tarfile/__init__.py:2306:37-38: Type of lambda parameter `a` is unknown [implicit-any-lambda]
- ERROR setuptools/_vendor/jaraco/context/__init__.py:90:58-64: Type of lambda parameter `member` is unknown [implicit-any-lambda]
- ERROR setuptools/_vendor/jaraco/context/__init__.py:90:66-70: Type of lambda parameter `path` is unknown [implicit-any-lambda]
- ERROR setuptools/_vendor/more_itertools/more.py:1306:33-34: Type of lambda parameter `i` is unknown [implicit-any-lambda]
- ERROR setuptools/_vendor/more_itertools/more.py:1306:44-45: The type of this argument is unknown [unknown-argument-type]
- ERROR setuptools/_vendor/wheel/_commands/convert.py:326:52-55: Type of lambda parameter `tag` is unknown [implicit-any-lambda]
- ERROR setuptools/_vendor/wheel/_metadata.py:163:75-76: Type of lambda parameter `x` is unknown [implicit-any-lambda]
+ ERROR setuptools/_vendor/wheel/_metadata.py:163:78-82: Implicit conversion of `str | None` to `bool` is not allowed [implicit-bool]
- ERROR setuptools/config/_validate_pyproject/extra_validations.py:130:45-46: Type of lambda parameter `b` is unknown [implicit-any-lambda]

comtypes (https://github.com/enthought/comtypes)
- ERROR comtypes/tools/codegenerator/namespaces.py:121:48-49: Type of lambda parameter `s` is unknown [implicit-any-lambda]

scikit-build-core (https://github.com/scikit-build/scikit-build-core)
- ERROR src/scikit_build_core/_vendor/pyproject_metadata/__init__.py:273:45-46: Type of lambda parameter `b` is unknown [implicit-any-lambda]
- ERROR src/scikit_build_core/build/_wheelfile.py:84:49-50: Type of lambda parameter `t` is unknown [implicit-any-lambda]
- ERROR src/scikit_build_core/build/sdist.py:237:32-36: Type of lambda parameter `pair` is unknown [implicit-any-lambda]
- ERROR src/scikit_build_core/file_api/_cattrs_converter.py:62:16-17: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR src/scikit_build_core/file_api/_cattrs_converter.py:62:19-20: Type of lambda parameter `_` is unknown [implicit-any-lambda]
- ERROR src/scikit_build_core/file_api/_cattrs_converter.py:63:68-69: The type of this argument is unknown [unknown-argument-type]
- ERROR src/scikit_build_core/resources/_editable_redirect.py:456:44-45: Type of lambda parameter `p` is unknown [implicit-any-lambda]
- ERROR src/scikit_build_core/setuptools/build_cmake.py:329:29-33: Type of lambda parameter `path` is unknown [implicit-any-lambda]
- ERROR src/scikit_build_core/setuptools/build_cmake.py:359:37-41: Type of lambda parameter `path` is unknown [implicit-any-lambda]
- ERROR src/scikit_build_core/setuptools/build_cmake.py:359:49-59: The type of this argument is unknown [unknown-argument-type]
- ERROR src/scikit_build_core/setuptools/build_cmake.py:359:72-76: The type of this argument is unknown [unknown-argument-type]
- ERROR src/scikit_build_core/setuptools/build_cmake.py:372:20-24: Type of lambda parameter `pair` is unknown [implicit-any-lambda]
- ERROR src/scikit_build_core/setuptools/build_cmake.py:372:31-44: The type of this argument is unknown [unknown-argument-type]
- ERROR src/scikit_build_core/setuptools/build_cmake.py:414:61-62: Type of lambda parameter `p` is unknown [implicit-any-lambda]
- ERROR src/scikit_build_core/setuptools/build_cmake.py:414:69-76: The type of this argument is unknown [unknown-argument-type]

apprise (https://github.com/caronc/apprise)
- ERROR apprise/asset.py:411:36-37: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR apprise/asset.py:443:36-37: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR apprise/cli.py:924:44-45: Type of lambda parameter `i` is unknown [implicit-any-lambda]
- ERROR apprise/plugins/aprs.py:611:20-21: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR apprise/plugins/custom_xml.py:390:39-40: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR apprise/plugins/matrix/base.py:643:28-29: Type of lambda parameter `k` is unknown [implicit-any-lambda]
- ERROR apprise/plugins/matrix/base.py:813:20-21: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR apprise/plugins/matrix/base.py:818:20-21: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR apprise/plugins/ryver.py:205:24-25: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR apprise/plugins/ryver.py:209:24-25: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR apprise/plugins/slack.py:1044:28-29: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR apprise/plugins/slack.py:1093:24-25: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR apprise/utils/templates.py:85:30-31: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR apprise/utils/templates.py:85:43-66: The type of this argument is unknown [unknown-argument-type]
- ERROR tests/test_decorator_notify.py:600:48-49: Type of lambda parameter `x` is unknown [implicit-any-lambda]

pyproject-metadata (https://github.com/pypa/pyproject-metadata)
- ERROR pyproject_metadata/__init__.py:273:45-46: Type of lambda parameter `b` is unknown [implicit-any-lambda]

psycopg (https://github.com/psycopg/psycopg)
- ERROR psycopg/psycopg/_dns.py:228:37-40: Type of lambda parameter `ent` is unknown [implicit-any-lambda]
- ERROR tests/test_tpc.py:185:30-31: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR tests/test_tpc_async.py:181:30-31: Type of lambda parameter `x` is unknown [implicit-any-lambda]

operator (https://github.com/canonical/operator)
- ERROR ops/_private/harness.py:4052:33-39: Type of lambda parameter `notice` is unknown [implicit-any-lambda]
- ERROR ops/model.py:2267:41-47: Type of lambda parameter `status` is unknown [implicit-any-lambda]
- ERROR ops/model.py:2267:69-80: The type of this argument is unknown [unknown-argument-type]

manticore (https://github.com/trailofbits/manticore)
- ERROR manticore/native/memory.py:894:42-43: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR manticore/utils/command_line.py:35:36-43: Type of lambda parameter `element` is unknown [implicit-any-lambda]

mongo-python-driver (https://github.com/mongodb/mongo-python-driver)
- ERROR pymongo/server_selectors.py:74:61-63: Type of lambda parameter `sd` is unknown [implicit-any-lambda]
- ERROR pymongo/topology_description.py:403:73-75: Type of lambda parameter `sd` is unknown [implicit-any-lambda]

schemathesis (https://github.com/schemathesis/schemathesis)
- ERROR src/schemathesis/cli/commands/fuzz/handlers/output.py:254:59-60: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/cli/commands/fuzz/handlers/output.py:255:74-75: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/cli/commands/fuzz/handlers/output.py:256:38-43: The type of this argument is unknown [unknown-argument-type]
- ERROR src/schemathesis/cli/commands/run/handlers/output.py:535:70-537:6: `dict[PhaseName, tuple[Status, None]]` is not assignable to `dict[PhaseName, tuple[Status, PhaseSkipReason | None]]` [bad-assignment]
- ERROR src/schemathesis/cli/commands/run/handlers/output.py:1178:41-42: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/cli/commands/run/handlers/output.py:1180:67-68: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/cli/commands/run/handlers/output.py:1181:38-43: The type of this argument is unknown [unknown-argument-type]
- ERROR src/schemathesis/cli/ext/groups.py:117:53-54: Type of lambda parameter `g` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/cli/output.py:336:65-66: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/core/error_feedback/pipeline.py:35:58-59: Type of lambda parameter `p` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/core/error_feedback/store.py:231:61-62: Type of lambda parameter `k` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/core/error_feedback/store.py:231:79-80: The type of this argument is unknown [unknown-argument-type]
- ERROR src/schemathesis/core/failures.py:351:74-75: Type of lambda parameter `f` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/engine/run/cache.py:112:29-34: Type of lambda parameter `entry` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/engine/run/cache.py:238:40-45: Type of lambda parameter `entry` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/engine/run/cache.py:240:26-31: Type of lambda parameter `entry` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/generation/case.py:318:103-104: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/generation/jsonschema/strategy.py:190:36-41: Type of lambda parameter `value` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/generation/jsonschema/strategy.py:605:52-57: Type of lambda parameter `value` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/generation/jsonschema/strategy.py:605:73-78: The type of this argument is unknown [unknown-argument-type]
- ERROR src/schemathesis/generation/jsonschema/strategy.py:793:59-62: Type of lambda parameter `key` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/generation/jsonschema/strategy.py:793:64-67: The type of this argument is unknown [unknown-argument-type]
+ ERROR src/schemathesis/generation/jsonschema/strategy.py:1199:53-58: Argument `bool | dict[str, JsonValue] | float | int | list[JsonValue] | str | None` is not assignable to parameter `obj` with type `Sized` in function `len` [bad-argument-type]
- ERROR src/schemathesis/generation/jsonschema/strategy.py:1165:43-48: Type of lambda parameter `value` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/generation/jsonschema/strategy.py:1199:35-40: Type of lambda parameter `value` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/generation/jsonschema/strategy.py:1199:53-58: The type of this argument is unknown [unknown-argument-type]
- ERROR src/schemathesis/specs/graphql/ordering.py:34:46-48: Type of lambda parameter `op` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/specs/openapi/_hypothesis.py:251:107-108: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/specs/openapi/_hypothesis.py:299:33-34: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/specs/openapi/_hypothesis.py:299:61-108: The type of this argument is unknown [unknown-argument-type]
- ERROR src/schemathesis/specs/openapi/_ordering.py:63:31-33: Type of lambda parameter `op` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/specs/openapi/adapter/parameters.py:2157:32-33: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/specs/openapi/adapter/parameters.py:2168:55-56: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/specs/openapi/adapter/parameters.py:2168:72-79: The type of this argument is unknown [unknown-argument-type]
- ERROR src/schemathesis/specs/openapi/adapter/parameters.py:2189:55-56: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/specs/openapi/adapter/parameters.py:2199:32-33: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/specs/openapi/adapter/parameters.py:2217:59-60: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/specs/openapi/adapter/responses.py:227:45-46: Type of lambda parameter `k` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/specs/openapi/coverage/_schema.py:2811:43-44: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/specs/openapi/formats.py:307:38-47: Type of lambda parameter `character` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/specs/openapi/formats.py:307:49-58: The type of this argument is unknown [unknown-argument-type]
- ERROR src/schemathesis/specs/openapi/schemas.py:327:62-64: Type of lambda parameter `op` is unknown [implicit-any-lambda]
- ERROR src/schemathesis/specs/openapi/schemas.py:327:90-99: The type of this argument is unknown [unknown-argument-type]

asynq (https://github.com/quora/asynq)
- ERROR asynq/tools.py:95:50-51: Type of lambda parameter `p` is unknown [implicit-any-lambda]
- ERROR asynq/tools.py:121:52-56: Type of lambda parameter `pair` is unknown [implicit-any-lambda]
- ERROR asynq/tools.py:147:52-56: Type of lambda parameter `pair` is unknown [implicit-any-lambda]

cibuildwheel (https://github.com/pypa/cibuildwheel)
- ERROR cibuildwheel/util/file.py:145:73-79: Type of lambda parameter `member` is unknown [implicit-any-lambda]
- ERROR cibuildwheel/util/file.py:145:81-82: Type of lambda parameter `_` is unknown [implicit-any-lambda]
- ERROR cibuildwheel/util/helpers.py:124:75-76: Type of lambda parameter `x` is unknown [implicit-any-lambda]

streamlit (https://github.com/streamlit/streamlit)
- ERROR lib/streamlit/elements/help.py:569:65-66: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR lib/streamlit/vendor/pympler/asizeof.py:1774:28-29: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR lib/tests/streamlit/watcher/local_sources_watcher_test.py:910:41-45: Type of lambda parameter `args` is unknown [implicit-any-lambda]
- ERROR scripts/snapshot_cleanup.py:382:24-25: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR scripts/snapshot_cleanup.py:382:48-49: The type of this argument is unknown [unknown-argument-type]
- ERROR scripts/snapshot_cleanup.py:405:24-25: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR scripts/snapshot_cleanup.py:405:48-49: The type of this argument is unknown [unknown-argument-type]

hydra-zen (https://github.com/mit-ll-responsible-ai/hydra-zen)
- ERROR tests/annotations/declarations.py:1111:26-29: Type of lambda parameter `cfg` is unknown [implicit-any-lambda]

pandera (https://github.com/pandera-dev/pandera)
- ERROR pandera/backends/pandas/array.py:443:75-76: The type of this argument is unknown [unknown-argument-type]
- ERROR pandera/backends/pandas/components.py:440:61-62: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR tests/pandas/test_schema_statistics.py:788:39-40: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR tests/pandas/test_schema_statistics.py:820:39-40: Type of lambda parameter `x` is unknown [implicit-any-lambda]

stone (https://github.com/dropbox/stone)
- ERROR stone/_vendor/ply/yacc.py:3086:37-47: Type of lambda parameter `p_function` is unknown [implicit-any-lambda]
- ERROR stone/_vendor/ply/yacc.py:3088:17-30: The type of this argument is unknown [unknown-argument-type]
- ERROR stone/backends/python_types.py:720:80-81: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR stone/backends/python_types.py:1002:80-81: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR stone/ir/api.py:257:46-48: Type of lambda parameter `dt` is unknown [implicit-any-lambda]
- ERROR stone/ir/api.py:309:45-46: Type of lambda parameter `n` is unknown [implicit-any-lambda]
- ERROR stone/ir/api.py:321:50-52: Type of lambda parameter `dt` is unknown [implicit-any-lambda]
- ERROR stone/ir/api.py:326:57-58: Type of lambda parameter `n` is unknown [implicit-any-lambda]
- ERROR stone/ir/api.py:334:41-50: Type of lambda parameter `data_type` is unknown [implicit-any-lambda]
- ERROR stone/ir/api.py:335:38-43: Type of lambda parameter `alias` is unknown [implicit-any-lambda]
- ERROR stone/ir/api.py:336:42-52: Type of lambda parameter `annotation` is unknown [implicit-any-lambda]
- ERROR test/test_stone.py:3836:36-37: Type of lambda parameter `x` is unknown [implicit-any-lambda]

ibis (https://github.com/ibis-project/ibis)
- ERROR ibis/backends/datafusion/__init__.py:261:30-31: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR ibis/backends/datafusion/__init__.py:262:26-27: The type of this argument is unknown [unknown-argument-type]
- ERROR ibis/backends/risingwave/tests/test_functions.py:646:35-36: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR ibis/backends/tests/test_aggregation.py:1504:47-48: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR ibis/backends/tests/test_aggregation.py:1509:38-39: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR ibis/backends/tests/test_export.py:240:20-24: Type of lambda parameter `path` is unknown [implicit-any-lambda]
- ERROR ibis/common/tests/test_graph.py:370:31-32: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR ibis/tests/benchmarks/test_benchmarks.py:501:28-31: Type of lambda parameter `obj` is unknown [implicit-any-lambda]

aiohttp (https://github.com/aio-libs/aiohttp)
- ERROR aiohttp/cookiejar.py:170:27-31: Type of lambda parameter `path` is unknown [implicit-any-lambda]
- ERROR aiohttp/cookiejar.py:170:33-38: Type of lambda parameter `flags` is unknown [implicit-any-lambda]
- ERROR aiohttp/cookiejar.py:170:48-52: The type of this argument is unknown [unknown-argument-type]
- ERROR aiohttp/cookiejar.py:170:54-59: The type of this argument is unknown [unknown-argument-type]
- ERROR aiohttp/helpers.py:413:36-37: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR aiohttp/helpers.py:781:50-51: Type of lambda parameter `p` is unknown [implicit-any-lambda]
- ERROR aiohttp/helpers.py:781:69-78: The type of this argument is unknown [unknown-argument-type]

build (https://github.com/pypa/build)
- ERROR tests/conftest.py:71:27-28: Type of lambda parameter `i` is unknown [implicit-any-lambda]
- ERROR tests/conftest.py:71:50-51: The type of this argument is unknown [unknown-argument-type]

strawberry (https://github.com/strawberry-graphql/strawberry)
- ERROR strawberry/federation/schema.py:94:47-48: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR strawberry/federation/schema.py:94:72-73: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR strawberry/federation/schema.py:96:65-66: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR strawberry/federation/schema.py:98:55-56: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR strawberry/federation/schema.py:98:80-81: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR strawberry/federation/schema.py:415:52-53: Type of lambda parameter `t` is unknown [implicit-any-lambda]
+ ERROR strawberry/federation/schema.py:415:55-82: Object of type `StrawberryType | type[WithStrawberryDefinition[Unknown] | Unknown] | Any` has no attribute `__strawberry_definition__` [missing-attribute]
- ERROR strawberry/file_uploads/scalars.py:10:22-23: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR strawberry/file_uploads/scalars.py:11:24-25: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR strawberry/schema/schema_converter.py:434:32-33: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR strawberry/schema/types/scalar.py:72:26-27: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR strawberry/schema/types/scalar.py:73:28-29: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR strawberry/schema/types/scalar.py:79:26-27: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR strawberry/schema/types/scalar.py:79:50-51: The type of this argument is unknown [unknown-argument-type]
- ERROR strawberry/schema/types/scalar.py:80:28-29: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR strawberry/schema/types/scalar.py:88:26-27: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR strawberry/schema/types/scalar.py:88:50-51: The type of this argument is unknown [unknown-argument-type]
- ERROR strawberry/schema/types/scalar.py:89:28-29: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR strawberry/schema/types/scalar.py:97:26-27: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR strawberry/schema/types/scalar.py:97:50-51: The type of this argument is unknown [unknown-argument-type]
- ERROR strawberry/schema/types/scalar.py:98:28-29: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR strawberry/schema_codegen/__init__.py:928:55-56: Type of lambda parameter `i` is unknown [implicit-any-lambda]
+ ERROR strawberry/schema_codegen/__init__.py:928:59-67: Implicit conversion of `str | None` to `bool` is not allowed [implicit-bool]

vision (https://github.com/pytorch/vision)
- ERROR torchvision/datasets/oxford_iiit_pet.py:87:28-46: Type of lambda parameter `image_id_and_label` is unknown [implicit-any-lambda]

zulip (https://github.com/zulip/zulip)
- ERROR zerver/migrations/0074_fix_duplicate_attachments.py:30:24-25: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR analytics/views/stats.py:564:89-90: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR corporate/lib/test_stripe_class.py:389:28-29: Type of lambda parameter `e` is unknown [implicit-any-lambda]
- ERROR corporate/views/support.py:707:46-47: Type of lambda parameter `d` is unknown [implicit-any-lambda]
- ERROR tools/droplets/cleanup.py:38:46-47: Type of lambda parameter `e` is unknown [implicit-any-lambda]
- ERROR tools/droplets/cleanup.py:38:67-84: The type of this argument is unknown [unknown-argument-type]
- ERROR tools/droplets/cleanup.py:39:12-23: The type of this argument is unknown [unknown-argument-type]
- ERROR tools/droplets/cleanup.py:41:14-25: The type of this argument is unknown [unknown-argument-type]
- ERROR tools/lib/provision_inner.py:148:20-21: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR tools/setup/emoji/emoji_setup_utils.py:91:37-47: Type of lambda parameter `emoji_code` is unknown [implicit-any-lambda]
- ERROR tools/setup/emoji/emoji_setup_utils.py:91:60-70: The type of this argument is unknown [unknown-argument-type]
- ERROR zerver/actions/default_streams.py:192:69-72: Type of lambda parameter `elt` is unknown [implicit-any-lambda]
- ERROR zerver/context_processors.py:318:75-76: Type of lambda parameter `d` is unknown [implicit-any-lambda]
- ERROR zerver/data_import/microsoft_teams.py:700:52-53: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR zerver/data_import/microsoft_teams.py:704:37-44: The type of this argument is unknown [unknown-argument-type]
- ERROR zerver/data_import/rocketchat.py:409:70-71: Type of lambda parameter `c` is unknown [implicit-any-lambda]
- ERROR zerver/lib/bulk_create.py:201:39-40: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR zerver/lib/channel_folders.py:69:47-53: Type of lambda parameter `folder` is unknown [implicit-any-lambda]
- ERROR zerver/lib/channel_folders.py:86:47-53: Type of lambda parameter `folder` is unknown [implicit-any-lambda]
- ERROR zerver/lib/email_notifications.py:371:30-37: Type of lambda parameter `message` is unknown [implicit-any-lambda]
- ERROR zerver/lib/email_notifications.py:726:40-43: Type of lambda parameter `msg` is unknown [implicit-any-lambda]
- ERROR zerver/lib/email_notifications.py:737:51-54: Type of lambda parameter `msg` is unknown [implicit-any-lambda]
- ERROR zerver/lib/email_notifications.py:740:50-51: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR zerver/lib/events.py:2293:67-68: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR zerver/lib/events.py:2320:24-25: Type of lambda parameter `x` is unknown [implicit-any-lambda]
- ERROR zerver/lib/export.py:490:35-38: Type of lambda parameter `row` is unknown [implicit-any-lambda]
- ERROR zerver/lib/export.py:510:33-39: Type of lambda parameter `record` is unknown [implicit-any-lambda]
+ ERROR zerver/lib/export.py:3209:18-84: No matching overload found for function `sorted` called with arguments: (dict_values[int, dict[str, bool | int | str | None]], key=(export_dict: Unknown) -> Unknown) [no-matching-overload]
- ERROR zerver/lib/import_realm.py:950:33-34: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR zerver/lib/markdown/__init__.py:1515:47-48: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR zerver/lib/markdown/__init__.py:1515:68-84: The type of this argument is unknown [unknown-argument-type]
- ERROR zerver/lib/markdown/__init__.py:1517:58-59: Type of lambda parameter `m` is unknown [implicit-any-lambda]
- ERROR zerver/lib/markdown/__init__.py:1517:77-93: The type of this argument is unknown [unknown-argument-type]
- ERROR zerver/lib/markdown/__init__.py:2475:29-30: Type of lambda parameter `k` is unknown [implicit-any-lambda]
- ERROR zerver/lib/markdown/__init__.py:2530:37-38: Type of lambda parameter `v` is unknown [implicit-any-lambda]
- ERROR zerver/lib/markdown/api_arguments_table_generator.py:144:52-61: Type of lambda parameter `parameter` is unknown [implicit-any-lambda]
- ERROR zerver/lib/narrow.py:1554:44-45: Type of lambda parameter `r` is unknown [implicit-any-lambda]
- ERROR zerver/lib/stream_subscription.py:193:67-70: Type of lambda parameter `obj` is unknown [implicit-any-lambda]
- ERROR zerver/lib/stream_subscription.py:195:16-25: The type of this argument is unknown [unknown-argument-type]
- ERROR zerver/lib/streams.py:2081:20-23: Type of lambda parameter `elt` is unknown [implicit-any-lambda]
- ERROR zerver/lib/subscription_info.py:1008:32-33: Type of lambda parameter `x` is unknown [implicit-any-lambda]

... (truncated 1171 lines) ...```

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Pandas locindexer for dataframes inspected as unknown

1 participant