Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Render star args in error messages properly #551

Merged
merged 1 commit into from
Oct 26, 2023
Merged

Conversation

KotlinIsland
Copy link
Owner

P = ParamSpec("P")

def f(fn: Callable[P, None]): ...
f(1) # E: Argument 1 to "f" has incompatible type "int"; expected "(*Never, **Never) -> None" [arg-type]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

test for named ones

@KotlinIsland KotlinIsland merged commit 4e0e763 into master Oct 26, 2023
1 of 2 checks passed
@KotlinIsland KotlinIsland deleted the callable branch October 26, 2023 01:50
@github-actions
Copy link

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

ibis (https://github.com/ibis-project/ibis)
- ibis/backends/tests/base.py:85:34: error: Expression type contains "Any" (has type "staticmethod[[*None: Any (from unimported type), **None: Any (from unimported type)], Any (from unimported type)]")  [no-any-expr]
+ ibis/backends/tests/base.py:85:34: error: Expression type contains "Any" (has type "staticmethod[[*Any (from unimported type), **Any (from unimported type)], Any (from unimported type)]")  [no-any-expr]
- ibis/backends/snowflake/tests/conftest.py:67:34: error: Expression type contains "Any" (has type "staticmethod[[*None: Any (from unimported type), **None: Any (from unimported type)], Any (from unimported type)]")  [no-any-expr]
+ ibis/backends/snowflake/tests/conftest.py:67:34: error: Expression type contains "Any" (has type "staticmethod[[*Any (from unimported type), **Any (from unimported type)], Any (from unimported type)]")  [no-any-expr]

sympy (https://github.com/sympy/sympy)
- sympy/utilities/lambdify.py:1407:28: error: Expression type contains "Any" (has type "staticmethod[[*None: Any (unannotated), **None: Any (unannotated)], Any (unannotated)]")  [no-any-expr]
+ sympy/utilities/lambdify.py:1407:28: error: Expression type contains "Any" (has type "staticmethod[[*Any (unannotated), **Any (unannotated)], Any (unannotated)]")  [no-any-expr]
- sympy/functions/special/polynomials.py:511:32: error: Argument 1 to "staticmethod" has incompatible type "None"; expected "(*None: Never, **None: Never) -> Never"  [arg-type]
+ sympy/functions/special/polynomials.py:511:32: error: Argument 1 to "staticmethod" has incompatible type "None"; expected "(*Never, **Never) -> Never"  [arg-type]
- sympy/functions/special/polynomials.py:629:32: error: Argument 1 to "staticmethod" has incompatible type "None"; expected "(*None: Never, **None: Never) -> Never"  [arg-type]
+ sympy/functions/special/polynomials.py:629:32: error: Argument 1 to "staticmethod" has incompatible type "None"; expected "(*Never, **Never) -> Never"  [arg-type]
- sympy/functions/special/polynomials.py:827:32: error: Argument 1 to "staticmethod" has incompatible type "None"; expected "(*None: Never, **None: Never) -> Never"  [arg-type]
+ sympy/functions/special/polynomials.py:827:32: error: Argument 1 to "staticmethod" has incompatible type "None"; expected "(*Never, **Never) -> Never"  [arg-type]
- sympy/functions/special/polynomials.py:1060:32: error: Argument 1 to "staticmethod" has incompatible type "None"; expected "(*None: Never, **None: Never) -> Never"  [arg-type]
+ sympy/functions/special/polynomials.py:1060:32: error: Argument 1 to "staticmethod" has incompatible type "None"; expected "(*Never, **Never) -> Never"  [arg-type]
- sympy/functions/special/polynomials.py:1166:32: error: Argument 1 to "staticmethod" has incompatible type "None"; expected "(*None: Never, **None: Never) -> Never"  [arg-type]
+ sympy/functions/special/polynomials.py:1166:32: error: Argument 1 to "staticmethod" has incompatible type "None"; expected "(*Never, **Never) -> Never"  [arg-type]
- sympy/functions/special/polynomials.py:1267:32: error: Argument 1 to "staticmethod" has incompatible type "None"; expected "(*None: Never, **None: Never) -> Never"  [arg-type]
+ sympy/functions/special/polynomials.py:1267:32: error: Argument 1 to "staticmethod" has incompatible type "None"; expected "(*Never, **Never) -> Never"  [arg-type]

dragonchain (https://github.com/dragonchain/dragonchain)
- dragonchain/broadcast_processor/broadcast_functions_utest.py:200:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/broadcast_processor/broadcast_functions_utest.py:200:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]
- dragonchain/broadcast_processor/broadcast_functions_utest.py:205:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-expr]
+ dragonchain/broadcast_processor/broadcast_functions_utest.py:205:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> Any (unannotated)")  [no-any-expr]
- dragonchain/broadcast_processor/broadcast_functions_utest.py:220:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-expr]
+ dragonchain/broadcast_processor/broadcast_functions_utest.py:220:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> Any (unannotated)")  [no-any-expr]
- dragonchain/broadcast_processor/broadcast_functions_utest.py:238:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-expr]
+ dragonchain/broadcast_processor/broadcast_functions_utest.py:238:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> Any (unannotated)")  [no-any-expr]
- dragonchain/lib/authorization_utest.py:202:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/lib/authorization_utest.py:202:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]
- dragonchain/lib/authorization_utest.py:229:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/lib/authorization_utest.py:229:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]
- dragonchain/lib/authorization_utest.py:256:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/lib/authorization_utest.py:256:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]
- dragonchain/lib/authorization_utest.py:283:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/lib/authorization_utest.py:283:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]
- dragonchain/lib/authorization_utest.py:310:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/lib/authorization_utest.py:310:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]
- dragonchain/lib/authorization_utest.py:353:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/lib/authorization_utest.py:353:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]
- dragonchain/lib/authorization_utest.py:380:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/lib/authorization_utest.py:380:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]
- dragonchain/lib/authorization_utest.py:424:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/lib/authorization_utest.py:424:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]
- dragonchain/lib/authorization_utest.py:452:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/lib/authorization_utest.py:452:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]
- dragonchain/lib/authorization_utest.py:482:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/lib/authorization_utest.py:482:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]
- dragonchain/lib/authorization_utest.py:511:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/lib/authorization_utest.py:511:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]
- dragonchain/lib/authorization_utest.py:539:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/lib/authorization_utest.py:539:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]
- dragonchain/lib/authorization_utest.py:567:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/lib/authorization_utest.py:567:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]
- dragonchain/lib/authorization_utest.py:628:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/lib/authorization_utest.py:628:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]
- dragonchain/lib/authorization_utest.py:637:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/lib/authorization_utest.py:637:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]
- dragonchain/lib/authorization_utest.py:646:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/lib/authorization_utest.py:646:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]
- dragonchain/lib/authorization_utest.py:654:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/lib/authorization_utest.py:654:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]
- dragonchain/lib/authorization_utest.py:662:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> Any (unannotated)")  [no-any-decorated]
+ dragonchain/lib/authorization_utest.py:662:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> Any (unannotated)")  [no-any-decorated]

cloud-init (https://github.com/canonical/cloud-init)
- tests/unittests/test_net.py:6776:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> None")  [no-any-expr]
+ tests/unittests/test_net.py:6776:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> None")  [no-any-expr]
- tests/unittests/test_net.py:6779:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ tests/unittests/test_net.py:6779:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- tests/unittests/test_net.py:6798:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> None")  [no-any-expr]
+ tests/unittests/test_net.py:6798:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> None")  [no-any-expr]
- tests/unittests/sources/test_vultr.py:417:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> None")  [no-any-expr]
+ tests/unittests/sources/test_vultr.py:417:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> None")  [no-any-expr]
- tests/unittests/sources/test_vultr.py:429:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ tests/unittests/sources/test_vultr.py:429:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- tests/unittests/sources/test_vultr.py:453:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> None")  [no-any-expr]
+ tests/unittests/sources/test_vultr.py:453:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> None")  [no-any-expr]
- tests/unittests/sources/test_vultr.py:466:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ tests/unittests/sources/test_vultr.py:466:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- tests/unittests/net/test_dhcp.py:440:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> None")  [no-any-expr]
+ tests/unittests/net/test_dhcp.py:440:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> None")  [no-any-expr]
- tests/unittests/distros/test_manage_service.py:18:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ tests/unittests/distros/test_manage_service.py:18:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- tests/unittests/distros/test_manage_service.py:27:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ tests/unittests/distros/test_manage_service.py:27:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- tests/unittests/distros/test_manage_service.py:36:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ tests/unittests/distros/test_manage_service.py:36:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- tests/unittests/distros/test_manage_service.py:75:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ tests/unittests/distros/test_manage_service.py:75:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- tests/unittests/distros/test_manage_service.py:84:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ tests/unittests/distros/test_manage_service.py:84:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- tests/unittests/config/test_cc_ubuntu_drivers.py:351:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ tests/unittests/config/test_cc_ubuntu_drivers.py:351:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- tests/unittests/config/test_cc_ubuntu_drivers.py:376:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ tests/unittests/config/test_cc_ubuntu_drivers.py:376:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- tests/unittests/config/test_cc_chef.py:99:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ tests/unittests/config/test_cc_chef.py:99:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]

kopf (https://github.com/nolar/kopf)
- kopf/_core/intents/callbacks.py:259:19: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool")  [no-any-expr]
+ kopf/_core/intents/callbacks.py:259:19: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool")  [no-any-expr]
- kopf/_core/intents/callbacks.py:259:50: error: Expression type contains "Any" (has type "Collection[(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool]")  [no-any-expr]
+ kopf/_core/intents/callbacks.py:259:50: error: Expression type contains "Any" (has type "Collection[(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool]")  [no-any-expr]
- kopf/_core/intents/callbacks.py:265:19: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool")  [no-any-expr]
+ kopf/_core/intents/callbacks.py:265:19: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool")  [no-any-expr]
- kopf/_core/intents/callbacks.py:265:50: error: Expression type contains "Any" (has type "Collection[(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool]")  [no-any-expr]
+ kopf/_core/intents/callbacks.py:265:50: error: Expression type contains "Any" (has type "Collection[(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool]")  [no-any-expr]
- kopf/_core/intents/callbacks.py:271:23: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool")  [no-any-expr]
+ kopf/_core/intents/callbacks.py:271:23: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool")  [no-any-expr]
- kopf/_core/intents/callbacks.py:271:54: error: Expression type contains "Any" (has type "Collection[(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool]")  [no-any-expr]
+ kopf/_core/intents/callbacks.py:271:54: error: Expression type contains "Any" (has type "Collection[(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool]")  [no-any-expr]
- kopf/_core/intents/registries.py:553:8: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool | None")  [no-any-expr]
+ kopf/_core/intents/registries.py:553:8: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool | None")  [no-any-expr]
- kopf/_core/reactor/subhandling.py:64:12: error: Expression type contains "Any" (has type "Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]] | None | Iterable[ChangingHandler] | ChangingRegistry")  [no-any-expr]
+ kopf/_core/reactor/subhandling.py:64:12: error: Expression type contains "Any" (has type "Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]] | None | Iterable[ChangingHandler] | ChangingRegistry")  [no-any-expr]
- kopf/_core/reactor/subhandling.py:64:12: error: Expression type contains "Any" (has type "list[Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]] | Iterable[ChangingHandler] | ChangingRegistry]")  [no-any-expr]
+ kopf/_core/reactor/subhandling.py:64:12: error: Expression type contains "Any" (has type "list[Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]] | Iterable[ChangingHandler] | ChangingRegistry]")  [no-any-expr]
- kopf/_core/reactor/subhandling.py:64:13: error: Expression type contains "Any" (has type "Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]] | Iterable[ChangingHandler] | ChangingRegistry")  [no-any-expr]
+ kopf/_core/reactor/subhandling.py:64:13: error: Expression type contains "Any" (has type "Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]] | Iterable[ChangingHandler] | ChangingRegistry")  [no-any-expr]
- kopf/_core/reactor/subhandling.py:64:24: error: Expression type contains "Any" (has type "list[Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]] | None | Iterable[ChangingHandler] | ChangingRegistry]")  [no-any-expr]
+ kopf/_core/reactor/subhandling.py:64:24: error: Expression type contains "Any" (has type "list[Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]] | None | Iterable[ChangingHandler] | ChangingRegistry]")  [no-any-expr]
- kopf/_core/reactor/subhandling.py:64:25: error: Expression type contains "Any" (has type "Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]] | None")  [no-any-expr]
+ kopf/_core/reactor/subhandling.py:64:25: error: Expression type contains "Any" (has type "Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]] | None")  [no-any-expr]
- kopf/_core/reactor/subhandling.py:64:53: error: Expression type contains "Any" (has type "Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]] | None | Iterable[ChangingHandler] | ChangingRegistry")  [no-any-expr]
+ kopf/_core/reactor/subhandling.py:64:53: error: Expression type contains "Any" (has type "Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]] | None | Iterable[ChangingHandler] | ChangingRegistry")  [no-any-expr]
- kopf/_core/reactor/subhandling.py:67:10: error: Expression type contains "Any" (has type "Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]] | None")  [no-any-expr]
+ kopf/_core/reactor/subhandling.py:67:10: error: Expression type contains "Any" (has type "Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]] | None")  [no-any-expr]
- kopf/_core/reactor/subhandling.py:67:41: error: Expression type contains "Any" (has type "Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]]")  [no-any-expr]
+ kopf/_core/reactor/subhandling.py:67:41: error: Expression type contains "Any" (has type "Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]]")  [no-any-expr]
- kopf/_core/reactor/subhandling.py:81:10: error: Expression type contains "Any" (has type "Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]] | None")  [no-any-expr]
+ kopf/_core/reactor/subhandling.py:81:10: error: Expression type contains "Any" (has type "Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]] | None")  [no-any-expr]
- kopf/_core/reactor/subhandling.py:81:41: error: Expression type contains "Any" (has type "Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]]")  [no-any-expr]
+ kopf/_core/reactor/subhandling.py:81:41: error: Expression type contains "Any" (has type "Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]]")  [no-any-expr]
- kopf/_core/reactor/subhandling.py:83:9: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/_core/reactor/subhandling.py:83:9: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/_core/reactor/subhandling.py:83:19: error: Expression type contains "Any" (has type "Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]]")  [no-any-expr]
+ kopf/_core/reactor/subhandling.py:83:19: error: Expression type contains "Any" (has type "Iterable[(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]]")  [no-any-expr]
- kopf/on.py:46:45: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:46:45: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:48:16: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:48:16: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:53:16: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:53:16: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:54:12: error: Expression type contains "Any" (has type "(fn: (*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]) -> (*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:54:12: error: Expression type contains "Any" (has type "(fn: (*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]) -> (*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:73:45: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:73:45: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:75:16: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:75:16: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:80:16: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:80:16: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:81:12: error: Expression type contains "Any" (has type "(fn: (*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]) -> (*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:81:12: error: Expression type contains "Any" (has type "(fn: (*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]) -> (*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:101:45: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:101:45: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:103:16: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:103:16: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:108:16: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:108:16: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:109:12: error: Expression type contains "Any" (has type "(fn: (*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]) -> (*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:109:12: error: Expression type contains "Any" (has type "(fn: (*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]) -> (*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:129:45: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:129:45: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:131:16: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:131:16: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:136:16: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:136:16: error: Expression type contains "Any" (has type "(*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:137:12: error: Expression type contains "Any" (has type "(fn: (*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]) -> (*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:137:12: error: Expression type contains "Any" (has type "(fn: (*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]) -> (*, settings: OperatorSettings, *: Index[Untyped, Untyped], retry: int, started: datetime, runtime: timedelta, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:190:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool | None")  [no-any-expr]
+ kopf/on.py:190:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool | None")  [no-any-expr]
- kopf/on.py:250:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool | None")  [no-any-expr]
+ kopf/on.py:250:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool | None")  [no-any-expr]
- kopf/on.py:298:45: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:298:45: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:305:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:305:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:307:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool | None")  [no-any-expr]
+ kopf/on.py:307:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool | None")  [no-any-expr]
- kopf/on.py:313:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:313:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:314:12: error: Expression type contains "Any" (has type "(fn: (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]) -> (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:314:12: error: Expression type contains "Any" (has type "(fn: (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]) -> (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:354:45: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:354:45: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:361:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:361:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:363:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool | None")  [no-any-expr]
+ kopf/on.py:363:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool | None")  [no-any-expr]
- kopf/on.py:369:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:369:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:370:12: error: Expression type contains "Any" (has type "(fn: (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]) -> (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:370:12: error: Expression type contains "Any" (has type "(fn: (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]) -> (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:412:45: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:412:45: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:419:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:419:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:421:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool | None")  [no-any-expr]
+ kopf/on.py:421:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool | None")  [no-any-expr]
- kopf/on.py:427:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:427:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:428:12: error: Expression type contains "Any" (has type "(fn: (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]) -> (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:428:12: error: Expression type contains "Any" (has type "(fn: (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]) -> (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:469:45: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:469:45: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:476:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:476:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:478:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool | None")  [no-any-expr]
+ kopf/on.py:478:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool | None")  [no-any-expr]
- kopf/on.py:484:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:484:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:485:12: error: Expression type contains "Any" (has type "(fn: (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]) -> (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:485:12: error: Expression type contains "Any" (has type "(fn: (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]) -> (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:527:45: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:527:45: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:534:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:534:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:536:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool | None")  [no-any-expr]
+ kopf/on.py:536:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool | None")  [no-any-expr]
- kopf/on.py:542:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:542:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:543:12: error: Expression type contains "Any" (has type "(fn: (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]) -> (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:543:12: error: Expression type contains "Any" (has type "(fn: (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]) -> (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:592:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool | None")  [no-any-expr]
+ kopf/on.py:592:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool | None")  [no-any-expr]
- kopf/on.py:633:45: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:633:45: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:640:16: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:640:16: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:642:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool | None")  [no-any-expr]
+ kopf/on.py:642:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool | None")  [no-any-expr]
- kopf/on.py:646:16: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:646:16: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:647:12: error: Expression type contains "Any" (has type "(fn: (*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]) -> (*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:647:12: error: Expression type contains "Any" (has type "(fn: (*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]) -> (*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:700:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool | None")  [no-any-expr]
+ kopf/on.py:700:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool | None")  [no-any-expr]
- kopf/on.py:753:45: error: Expression type contains "Any" (has type "(*, *: Index[Untyped, Untyped], annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:753:45: error: Expression type contains "Any" (has type "(*, *: Index[Untyped, Untyped], annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:760:16: error: Expression type contains "Any" (has type "(*, *: Index[Untyped, Untyped], annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:760:16: error: Expression type contains "Any" (has type "(*, *: Index[Untyped, Untyped], annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:762:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool | None")  [no-any-expr]
+ kopf/on.py:762:77: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool | None")  [no-any-expr]
- kopf/on.py:768:16: error: Expression type contains "Any" (has type "(*, *: Index[Untyped, Untyped], annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:768:16: error: Expression type contains "Any" (has type "(*, *: Index[Untyped, Untyped], annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:769:12: error: Expression type contains "Any" (has type "(fn: (*, *: Index[Untyped, Untyped], annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]) -> (*, *: Index[Untyped, Untyped], annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:769:12: error: Expression type contains "Any" (has type "(fn: (*, *: Index[Untyped, Untyped], annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]) -> (*, *: Index[Untyped, Untyped], annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:829:45: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:829:45: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:832:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:832:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:834:73: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> bool | None")  [no-any-expr]
+ kopf/on.py:834:73: error: Expression type contains "Any" (has type "(*, type: str, event: RawEvent, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> bool | None")  [no-any-expr]
- kopf/on.py:841:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
+ kopf/on.py:841:16: error: Expression type contains "Any" (has type "(*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]
- kopf/on.py:842:12: error: Expression type contains "Any" (has type "(fn: (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]) -> (*, retry: int, started: datetime, runtime: timedelta, annotations: Mapping[str, str], labels: Mapping[str, str], body: Body, meta: Meta, spec: Spec, status: Status, resource: Resource, uid: str | None, name: str | None, namespace: str | None, patch: Patch, reason: str, diff: Diff, old: BodyEssence | Any | None, new: BodyEssence | Any | None, logger: Logger | LoggerAdapter[Any], memo: Any, param: Any = ..., **None: Any) -> object | None | Coroutine[None, None, object | None]")  [no-any-expr]

... (truncated 9 lines) ...

paasta (https://github.com/yelp/paasta)
- paasta_tools/utils.py:3989:5: error: Type of decorated function contains type "Any" ("(type[ZookeeperPool], *None: Any, **None: Any) -> None")  [no-any-decorated]
+ paasta_tools/utils.py:3989:5: error: Type of decorated function contains type "Any" ("(type[ZookeeperPool], *Any, **Any) -> None")  [no-any-decorated]

sphinx (https://github.com/sphinx-doc/sphinx)
- sphinx/registry.py:238:27: error: Expression type contains "Any" (has type "(str, None | staticmethod[[*None: Untyped, **None: Untyped], Any (from omitted generics)])")  [no-any-expr]
+ sphinx/registry.py:238:27: error: Expression type contains "Any" (has type "(str, None | staticmethod[[*Untyped, **Untyped], Any (from omitted generics)])")  [no-any-expr]
- sphinx/registry.py:238:41: error: Expression type contains "Any" (has type "None | staticmethod[[*None: Untyped, **None: Untyped], Any (from omitted generics)]")  [no-any-expr]
+ sphinx/registry.py:238:41: error: Expression type contains "Any" (has type "None | staticmethod[[*Untyped, **Untyped], Any (from omitted generics)]")  [no-any-expr]
- sphinx/registry.py:238:56: error: Expression type contains "Any" (has type "staticmethod[[*None: Untyped, **None: Untyped], Any (from omitted generics)]")  [no-any-expr]
+ sphinx/registry.py:238:56: error: Expression type contains "Any" (has type "staticmethod[[*Untyped, **Untyped], Any (from omitted generics)]")  [no-any-expr]

tornado (https://github.com/tornadoweb/tornado)
- tornado/test/util.py:105:19: error: Expression type contains "Any" (has type "(*None: Any (unannotated), **None: Any (unannotated)) -> _GeneratorContextManager[Any (unannotated)]")  [no-any-expr]
+ tornado/test/util.py:105:19: error: Expression type contains "Any" (has type "(*Any (unannotated), **Any (unannotated)) -> _GeneratorContextManager[Any (unannotated)]")  [no-any-expr]
- tornado/test/util.py:105:45: error: Expression type contains "Any" (has type "(*None: Any (unannotated), **None: Any (unannotated)) -> Any (unannotated)")  [no-any-expr]
+ tornado/test/util.py:105:45: error: Expression type contains "Any" (has type "(*Any (unannotated), **Any (unannotated)) -> Any (unannotated)")  [no-any-expr]

zetta_utils (https://github.com/ZettaAI/zetta_utils)
- zetta_utils/mazepa/tasks.py:271:16: error: Expression type contains "Any" (has type "_TaskableOperation[[*None: Any (unannotated), **None: Any (unannotated)], Any (unannotated)]")  [no-any-expr]
+ zetta_utils/mazepa/tasks.py:271:16: error: Expression type contains "Any" (has type "_TaskableOperation[[*Any (unannotated), **Any (unannotated)], Any (unannotated)]")  [no-any-expr]
- zetta_utils/tensor_ops/common.py:257:2: error: Argument 1 to "supports_dict" has incompatible type "[TensorTypeVar in (Any (from unimported type), Any (from unimported type), Any (from unimported type) | Any (from unimported type))] (data: TensorTypeVar, ndim: int | None) -> None"; expected "(Any (from error), *None: Any (from error), **None: Any (from error)) -> Any (from error)"  [arg-type]
+ zetta_utils/tensor_ops/common.py:257:2: error: Argument 1 to "supports_dict" has incompatible type "[TensorTypeVar in (Any (from unimported type), Any (from unimported type), Any (from unimported type) | Any (from unimported type))] (data: TensorTypeVar, ndim: int | None) -> None"; expected "(Any (from error), *Any (from error), **Any (from error)) -> Any (from error)"  [arg-type]
- zetta_utils/tensor_ops/common.py:279:2: error: Argument 1 to "supports_dict" has incompatible type "[TensorTypeVar in (Any (from unimported type), Any (from unimported type), Any (from unimported type) | Any (from unimported type))] (data: TensorTypeVar, ndim: int | None) -> None"; expected "(Any (from error), *None: Any (from error), **None: Any (from error)) -> Any (from error)"  [arg-type]
+ zetta_utils/tensor_ops/common.py:279:2: error: Argument 1 to "supports_dict" has incompatible type "[TensorTypeVar in (Any (from unimported type), Any (from unimported type), Any (from unimported type) | Any (from unimported type))] (data: TensorTypeVar, ndim: int | None) -> None"; expected "(Any (from error), *Any (from error), **Any (from error)) -> Any (from error)"  [arg-type]
- zetta_utils/mazepa/execution.py:108:24: error: Expression type contains "Any" (has type "_TaskableOperation[[*None: Untyped, **None: Untyped], Any (from omitted generics)]")  [no-any-expr]
+ zetta_utils/mazepa/execution.py:108:24: error: Expression type contains "Any" (has type "_TaskableOperation[[*Untyped, **Untyped], Any (from omitted generics)]")  [no-any-expr]
- zetta_utils/mazepa_layer_processing/alignment/compute_alignment_quality.py:42:2: error: Expression type contains "Any" (has type "FlowSchema[[*None: Any (from unimported type), **None: Any (from unimported type)]]")  [no-any-expr]
+ zetta_utils/mazepa_layer_processing/alignment/compute_alignment_quality.py:42:2: error: Expression type contains "Any" (has type "FlowSchema[[*Any (from unimported type), **Any (from unimported type)]]")  [no-any-expr]
- zetta_utils/mazepa_layer_processing/alignment/compute_alignment_quality.py:45:1: error: Type of decorated function contains type "Any" ("FlowSchema[[*None: Any (from unimported type), **None: Any (from unimported type)]]")  [no-any-decorated]
+ zetta_utils/mazepa_layer_processing/alignment/compute_alignment_quality.py:45:1: error: Type of decorated function contains type "Any" ("FlowSchema[[*Any (from unimported type), **Any (from unimported type)]]")  [no-any-decorated]
- tests/unit/tensor_ops/test_common.py:746:6: error: Argument 1 to "supports_dict" has incompatible type "[TensorTypeVar in (Any (from unimported type), Any (from unimported type), Any (from unimported type) | Any (from unimported type))] (x: TensorTypeVar, y: Untyped, z: int=...) -> None"; expected "(Any (from error), *None: Any (from error), **None: Any (from error)) -> Any (from error)"  [arg-type]
+ tests/unit/tensor_ops/test_common.py:746:6: error: Argument 1 to "supports_dict" has incompatible type "[TensorTypeVar in (Any (from unimported type), Any (from unimported type), Any (from unimported type) | Any (from unimported type))] (x: TensorTypeVar, y: Untyped, z: int=...) -> None"; expected "(Any (from error), *Any (from error), **Any (from error)) -> Any (from error)"  [arg-type]
- tests/unit/mazepa/maker_utils.py:9:12: error: Expression type contains "Any" (has type "_TaskableOperation[[*None: Any (unannotated), **None: Any (unannotated)], Any (unannotated)]")  [no-any-expr]
+ tests/unit/mazepa/maker_utils.py:9:12: error: Expression type contains "Any" (has type "_TaskableOperation[[*Any (unannotated), **Any (unannotated)], Any (unannotated)]")  [no-any-expr]

prefect (https://github.com/PrefectHQ/prefect)
- src/prefect/server/utilities/server.py:52:31: error: Expression type contains "Any" (has type "(*None: Untyped, **None: Untyped) -> _AsyncGeneratorContextManager[Any (from omitted generics)]")  [no-any-expr]
+ src/prefect/server/utilities/server.py:52:31: error: Expression type contains "Any" (has type "(*Untyped, **Untyped) -> _AsyncGeneratorContextManager[Any (from omitted generics)]")  [no-any-expr]
- src/prefect/utilities/asyncutils.py:259:20: error: Argument 1 to "is_async_fn" has incompatible type "T@sync_compatible"; expected "(*None: Never, **None: Never) -> Never | (*None: Never, **None: Never) -> Awaitable[Never]"  [arg-type]
+ src/prefect/utilities/asyncutils.py:259:20: error: Argument 1 to "is_async_fn" has incompatible type "T@sync_compatible"; expected "(*Never, **Never) -> Never | (*Never, **Never) -> Awaitable[Never]"  [arg-type]
- src/prefect/deployments/runner.py:449:53: error: Expression type contains "Any" (has type "(*None: Untyped, **None: Untyped) -> Untyped")  [no-any-expr]
+ src/prefect/deployments/runner.py:449:53: error: Expression type contains "Any" (has type "(*Untyped, **Untyped) -> Untyped")  [no-any-expr]
- src/prefect/packaging/base.py:69:52: error: Expression type contains "Any" (has type "(*None: Untyped, **None: Untyped) -> Untyped")  [no-any-expr]
+ src/prefect/packaging/base.py:69:52: error: Expression type contains "Any" (has type "(*Untyped, **Untyped) -> Untyped")  [no-any-expr]
- src/prefect/deployments/deployments.py:852:53: error: Expression type contains "Any" (has type "(*None: Untyped, **None: Untyped) -> Untyped")  [no-any-expr]
+ src/prefect/deployments/deployments.py:852:53: error: Expression type contains "Any" (has type "(*Untyped, **Untyped) -> Untyped")  [no-any-expr]
- src/prefect/engine.py:219:64: error: Expression type contains "Any" (has type "(*None: Untyped, **None: Untyped) -> Untyped")  [no-any-expr]
+ src/prefect/engine.py:219:64: error: Expression type contains "Any" (has type "(*Untyped, **Untyped) -> Untyped")  [no-any-expr]
- src/prefect/engine.py:592:18: error: Expression type contains "Any" (has type "Task[[*None: Untyped, **None: Untyped], Any (from omitted generics)]")  [no-any-expr]
+ src/prefect/engine.py:592:18: error: Expression type contains "Any" (has type "Task[[*Untyped, **Untyped], Any (from omitted generics)]")  [no-any-expr]
- src/prefect/engine.py:592:42: error: Expression type contains "Any" (has type "(*None: Untyped, **None: Untyped) -> Untyped")  [no-any-expr]
+ src/prefect/engine.py:592:42: error: Expression type contains "Any" (has type "(*Untyped, **Untyped) -> Untyped")  [no-any-expr]
- src/prefect/engine.py:594:14: error: Expression type contains "Any" (has type "Task[[*None: Untyped, **None: Untyped], Any (from omitted generics)]")  [no-any-expr]
+ src/prefect/engine.py:594:14: error: Expression type contains "Any" (has type "Task[[*Untyped, **Untyped], Any (from omitted generics)]")  [no-any-expr]
- src/prefect/engine.py:596:72: error: Expression type contains "Any" (has type "Task[[*None: Untyped, **None: Untyped], Any (from omitted generics)]")  [no-any-expr]
+ src/prefect/engine.py:596:72: error: Expression type contains "Any" (has type "Task[[*Untyped, **Untyped], Any (from omitted generics)]")  [no-any-expr]
- src/prefect/engine.py:796:58: error: Expression type contains "Any" (has type "(*None: Untyped, **None: Untyped) -> Untyped")  [no-any-expr]
+ src/prefect/engine.py:796:58: error: Expression type contains "Any" (has type "(*Untyped, **Untyped) -> Untyped")  [no-any-expr]
- src/prefect/engine.py:802:57: error: Expression type contains "Any" (has type "(*None: Untyped, **None: Untyped) -> Untyped")  [no-any-expr]
+ src/prefect/engine.py:802:57: error: Expression type contains "Any" (has type "(*Untyped, **Untyped) -> Untyped")  [no-any-expr]
- src/prefect/engine.py:808:41: error: Expression type contains "Any" (has type "(*None: Untyped, **None: Untyped) -> Untyped")  [no-any-expr]
+ src/prefect/engine.py:808:41: error: Expression type contains "Any" (has type "(*Untyped, **Untyped) -> Untyped")  [no-any-expr]
- src/prefect/engine.py:1168:45: error: Expression type contains "Any" (has type "(*None: Untyped, **None: Untyped) -> Untyped")  [no-any-expr]
+ src/prefect/engine.py:1168:45: error: Expression type contains "Any" (has type "(*Untyped, **Untyped) -> Untyped")  [no-any-expr]
- src/prefect/engine.py:1211:50: error: Expression type contains "Any" (has type "(*None: Untyped, **None: Untyped) -> Untyped")  [no-any-expr]
+ src/prefect/engine.py:1211:50: error: Expression type contains "Any" (has type "(*Untyped, **Untyped) -> Untyped")  [no-any-expr]
- src/prefect/engine.py:1219:56: error: Expression type contains "Any" (has type "(*None: Untyped, **None: Untyped) -> Untyped")  [no-any-expr]
+ src/prefect/engine.py:1219:56: error: Expression type contains "Any" (has type "(*Untyped, **Untyped) -> Untyped")  [no-any-expr]
- src/prefect/engine.py:1707:58: error: Expression type contains "Any" (has type "(*None: Untyped, **None: Untyped) -> Untyped")  [no-any-expr]
+ src/prefect/engine.py:1707:58: error: Expression type contains "Any" (has type "(*Untyped, **Untyped) -> Untyped")  [no-any-expr]
- src/prefect/engine.py:1724:57: error: Expression type contains "Any" (has type "(*None: Untyped, **None: Untyped) -> Untyped")  [no-any-expr]
+ src/prefect/engine.py:1724:57: error: Expression type contains "Any" (has type "(*Untyped, **Untyped) -> Untyped")  [no-any-expr]
- src/prefect/engine.py:1731:33: error: Expression type contains "Any" (has type "(*None: Untyped, **None: Untyped) -> Untyped")  [no-any-expr]
+ src/prefect/engine.py:1731:33: error: Expression type contains "Any" (has type "(*Untyped, **Untyped) -> Untyped")  [no-any-expr]
- src/prefect/engine.py:219:64: error: Expression type contains "Any" (has type "(*None: Untyped, **None: Untyped) -> Untyped")  [no-any-expr]
+ src/prefect/engine.py:219:64: error: Expression type contains "Any" (has type "(*Untyped, **Untyped) -> Untyped")  [no-any-expr]
- src/prefect/engine.py:592:18: error: Expression type contains "Any" (has type "Task[[*None: Untyped, **None: Untyped], Any (from omitted generics)]")  [no-any-expr]
+ src/prefect/engine.py:592:18: error: Expression type contains "Any" (has type "Task[[*Untyped, **Untyped], Any (from omitted generics)]")  [no-any-expr]
- src/prefect/engine.py:592:42: error: Expression type contains "Any" (has type "(*None: Untyped, **None: Untyped) -> Untyped")  [no-any-expr]
+ src/prefect/engine.py:592:42: error: Expression type contains "Any" (has type "(*Untyped, **Untyped) -> Untyped")  [no-any-expr]
- src/prefect/engine.py:594:14: error: Expression type contains "Any" (has type "Task[[*None: Untyped, **None: Untyped], Any (from omitted generics)]")  [no-any-expr]
+ src/prefect/engine.py:594:14: error: Expression type contains "Any" (has type "Task[[*Untyped, **Untyped], Any (from omitted generics)]")  [no-any-expr]
- src/prefect/engine.py:596:72: error: Expression type contains "Any" (has type "Task[[*None: Untyped, **None: Untyped], Any (from omitted generics)]")  [no-any-expr]
+ src/prefect/engine.py:596:72: error: Expression type contains "Any" (has type "Task[[*Untyped, **Untyped], Any (from omitted generics)]")  [no-any-expr]

spark (https://github.com/apache/spark)
- python/pyspark/instrumentation_utils.py:169:37: error: Expression type contains "Any" (has type "staticmethod[[*None: Untyped, **None: Untyped], Any]")  [no-any-expr]
+ python/pyspark/instrumentation_utils.py:169:37: error: Expression type contains "Any" (has type "staticmethod[[*Untyped, **Untyped], Any]")  [no-any-expr]

pydantic (https://github.com/samuelcolvin/pydantic)
- pydantic/v1/class_validators.py:148:13: error: Expression type contains "Any" (has type "classmethod[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ pydantic/v1/class_validators.py:148:13: error: Expression type contains "Any" (has type "classmethod[Any, [*Any, **Any], Any]")  [no-any-expr]
- pydantic/v1/class_validators.py:148:64: error: Expression type contains "Any" (has type "classmethod[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ pydantic/v1/class_validators.py:148:64: error: Expression type contains "Any" (has type "classmethod[Any, [*Any, **Any], Any]")  [no-any-expr]
- pydantic/v1/class_validators.py:151:21: error: Expression type contains "Any" (has type "classmethod[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ pydantic/v1/class_validators.py:151:21: error: Expression type contains "Any" (has type "classmethod[Any, [*Any, **Any], Any]")  [no-any-expr]
- pydantic/v1/class_validators.py:151:21: error: Expression type contains "Any" (has type "(type[Any], *None: Any, **None: Any) -> Any")  [no-any-expr]
+ pydantic/v1/class_validators.py:151:21: error: Expression type contains "Any" (has type "(type[Any], *Any, **Any) -> Any")  [no-any-expr]
- pydantic/v1/class_validators.py:153:23: error: Expression type contains "Any" (has type "classmethod[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ pydantic/v1/class_validators.py:153:23: error: Expression type contains "Any" (has type "classmethod[Any, [*Any, **Any], Any]")  [no-any-expr]
- pydantic/v1/class_validators.py:153:23: error: Expression type contains "Any" (has type "(type[Any], *None: Any, **None: Any) -> Any")  [no-any-expr]
+ pydantic/v1/class_validators.py:153:23: error: Expression type contains "Any" (has type "(type[Any], *Any, **Any) -> Any")  [no-any-expr]
- pydantic/v1/class_validators.py:153:82: error: Expression type contains "Any" (has type "classmethod[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ pydantic/v1/class_validators.py:153:82: error: Expression type contains "Any" (has type "classmethod[Any, [*Any, **Any], Any]")  [no-any-expr]
- pydantic/v1/class_validators.py:153:82: error: Expression type contains "Any" (has type "(type[Any], *None: Any, **None: Any) -> Any")  [no-any-expr]
+ pydantic/v1/class_validators.py:153:82: error: Expression type contains "Any" (has type "(type[Any], *Any, **Any) -> Any")  [no-any-expr]
- pydantic/v1/class_validators.py:158:12: error: Expression type contains "Any" (has type "classmethod[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ pydantic/v1/class_validators.py:158:12: error: Expression type contains "Any" (has type "classmethod[Any, [*Any, **Any], Any]")  [no-any-expr]
- pydantic/plugin/_schema_validator.py:63:32: error: Expression type contains "Any" (has type "(*None: Any (from unimported type), **None: Any (from unimported type)) -> Any (from unimported type)")  [no-any-expr]
+ pydantic/plugin/_schema_validator.py:63:32: error: Expression type contains "Any" (has type "(*Any (from unimported type), **Any (from unimported type)) -> Any (from unimported type)")  [no-any-expr]
- pydantic/plugin/_schema_validator.py:64:30: error: Expression type contains "Any" (has type "(*None: Any (from unimported type), **None: Any (from unimported type)) -> Any (from unimported type)")  [no-any-expr]
+ pydantic/plugin/_schema_validator.py:64:30: error: Expression type contains "Any" (has type "(*Any (from unimported type), **Any (from unimported type)) -> Any (from unimported type)")  [no-any-expr]
- pydantic/plugin/_schema_validator.py:65:33: error: Expression type contains "Any" (has type "(*None: Any (from unimported type), **None: Any (from unimported type)) -> Any (from unimported type)")  [no-any-expr]
+ pydantic/plugin/_schema_validator.py:65:33: error: Expression type contains "Any" (has type "(*Any (from unimported type), **Any (from unimported type)) -> Any (from unimported type)")  [no-any-expr]
- pydantic/_internal/_decorators.py:190:20: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> ReturnType@PydanticDescriptorProxy | Any")  [no-any-expr]
+ pydantic/_internal/_decorators.py:190:20: error: Expression type contains "Any" (has type "(*Any, **Any) -> ReturnType@PydanticDescriptorProxy | Any")  [no-any-expr]
- pydantic/_internal/_decorators.py:190:20: error: Incompatible return value type (got "(*None: Any, **None: Any) -> ReturnType@PydanticDescriptorProxy | Any", expected "PydanticDescriptorProxy[ReturnType@PydanticDescriptorProxy]")  [return-value]
+ pydantic/_internal/_decorators.py:190:20: error: Incompatible return value type (got "(*Any, **Any) -> ReturnType@PydanticDescriptorProxy | Any", expected "PydanticDescriptorProxy[ReturnType@PydanticDescriptorProxy]")  [return-value]
- pydantic/_internal/_decorators.py:695:16: error: Expression type contains "Any" (has type "classmethod[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ pydantic/_internal/_decorators.py:695:16: error: Expression type contains "Any" (has type "classmethod[Any, [*Any, **Any], Any]")  [no-any-expr]

apprise (https://github.com/caronc/apprise)
- apprise/decorators/CustomNotifyPlugin.py:131:22: error: Expression type contains "Any" (has type "staticmethod[[*None: Any (unannotated), **None: Any (unannotated)], Any (unannotated)]")  [no-any-expr]
+ apprise/decorators/CustomNotifyPlugin.py:131:22: error: Expression type contains "Any" (has type "staticmethod[[*Any (unannotated), **Any (unannotated)], Any (unannotated)]")  [no-any-expr]

scrapy (https://github.com/scrapy/scrapy)
- tests/test_utils_display.py:27:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ tests/test_utils_display.py:27:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- tests/test_utils_display.py:42:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ tests/test_utils_display.py:42:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- tests/test_utils_display.py:51:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ tests/test_utils_display.py:51:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- tests/test_utils_display.py:63:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ tests/test_utils_display.py:63:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- tests/test_utils_display.py:71:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ tests/test_utils_display.py:71:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]

jax (https://github.com/google/jax)
- jax/_src/numpy/array_methods.py:718:61: error: Argument 1 to "staticmethod" has incompatible type "(self: Untyped, item: Untyped) -> None | (self: Untyped, i: Untyped, x: Untyped) -> None | (self: Array) -> Array | (self: Array, memo: Any) -> Array | Any | (number: Array | Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | bool | int | float | complex, ndigits: int | None=...) -> Array"; expected "(*None: [self: Untyped, item: Untyped] & [self: Untyped, i: Untyped, x: Untyped] & [self: Array] & [self: Array, memo: Any] & [number: Array | Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | bool | int | float | complex, ndigits: int | None=...], **None: [self: Untyped, item: Untyped] & [self: Untyped, i: Untyped, x: Untyped] & [self: Array] & [self: Array, memo: Any] & [number: Array | Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | bool | int | float | complex, ndigits: int | None=...]) -> Any"  [arg-type]
+ jax/_src/numpy/array_methods.py:718:61: error: Argument 1 to "staticmethod" has incompatible type "(self: Untyped, item: Untyped) -> None | (self: Untyped, i: Untyped, x: Untyped) -> None | (self: Array) -> Array | (self: Array, memo: Any) -> Array | Any | (number: Array | Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | bool | int | float | complex, ndigits: int | None=...) -> Array"; expected "(*[self: Untyped, item: Untyped] & [self: Untyped, i: Untyped, x: Untyped] & [self: Array] & [self: Array, memo: Any] & [number: Array | Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | bool | int | float | complex, ndigits: int | None=...], **[self: Untyped, item: Untyped] & [self: Untyped, i: Untyped, x: Untyped] & [self: Array] & [self: Array, memo: Any] & [number: Array | Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | bool | int | float | complex, ndigits: int | None=...]) -> Any"  [arg-type]

Tanjun (https://github.com/FasterSpeeding/Tanjun)
- tanjun/abc.py:2166:5: error: Type of decorated function contains type "Any" ("[_AnyErrorHookSigT: (Any, Exception, *None: Any, **None: Any) -> Coroutine[Any, Any, bool | None] | bool | None] (Hooks[Context], _AnyErrorHookSigT) -> _AnyErrorHookSigT")  [no-any-decorated]
+ tanjun/abc.py:2166:5: error: Type of decorated function contains type "Any" ("[_AnyErrorHookSigT: (Any, Exception, *Any, **Any) -> Coroutine[Any, Any, bool | None] | bool | None] (Hooks[Context], _AnyErrorHookSigT) -> _AnyErrorHookSigT")  [no-any-decorated]
- tanjun/abc.py:2185:5: error: Type of decorated function contains type "Any" ("[_AnyErrorHookSigT: (Any, Exception, *None: Any, **None: Any) -> Coroutine[Any, Any, bool | None] | bool | None] (Hooks[Context] | Hooks[MenuContext] | Hooks[MessageContext] | Hooks[SlashContext], _AnyErrorHookSigT) -> _AnyErrorHookSigT")  [no-any-decorated]
+ tanjun/abc.py:2185:5: error: Type of decorated function contains type "Any" ("[_AnyErrorHookSigT: (Any, Exception, *Any, **Any) -> Coroutine[Any, Any, bool | None] | bool | None] (Hooks[Context] | Hooks[MenuContext] | Hooks[MessageContext] | Hooks[SlashContext], _AnyErrorHookSigT) -> _AnyErrorHookSigT")  [no-any-decorated]
- tanjun/abc.py:2250:5: error: Type of decorated function contains type "Any" ("[_AnyParserHookSigT: (Any, ParserError, *None: Any, **None: Any) -> Coroutine[Any, Any, bool | None] | bool | None] (Hooks[Context], _AnyParserHookSigT) -> _AnyParserHookSigT")  [no-any-decorated]
+ tanjun/abc.py:2250:5: error: Type of decorated function contains type "Any" ("[_AnyParserHookSigT: (Any, ParserError, *Any, **Any) -> Coroutine[Any, Any, bool | None] | bool | None] (Hooks[Context], _AnyParserHookSigT) -> _AnyParserHookSigT")  [no-any-decorated]
- tanjun/abc.py:2269:5: error: Type of decorated function contains type "Any" ("[_AnyParserHookSigT: (Any, ParserError, *None: Any, **None: Any) -> Coroutine[Any, Any, bool | None] | bool | None] (Hooks[Context] | Hooks[MenuContext] | Hooks[MessageContext] | Hooks[SlashContext], _AnyParserHookSigT) -> _AnyParserHookSigT")  [no-any-decorated]
+ tanjun/abc.py:2269:5: error: Type of decorated function contains type "Any" ("[_AnyParserHookSigT: (Any, ParserError, *Any, **Any) -> Coroutine[Any, Any, bool | None] | bool | None] (Hooks[Context] | Hooks[MenuContext] | Hooks[MessageContext] | Hooks[SlashContext], _AnyParserHookSigT) -> _AnyParserHookSigT")  [no-any-decorated]
- tanjun/abc.py:2318:5: error: Type of decorated function contains type "Any" ("[_AnyHookSigT: (Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None] | None] (Hooks[Context], _AnyHookSigT) -> _AnyHookSigT")  [no-any-decorated]
+ tanjun/abc.py:2318:5: error: Type of decorated function contains type "Any" ("[_AnyHookSigT: (Any, *Any, **Any) -> Coroutine[Any, Any, None] | None] (Hooks[Context], _AnyHookSigT) -> _AnyHookSigT")  [no-any-decorated]
- tanjun/abc.py:2337:5: error: Type of decorated function contains type "Any" ("[_AnyHookSigT: (Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None] | None] (Hooks[Context] | Hooks[MenuContext] | Hooks[MessageContext] | Hooks[SlashContext], _AnyHookSigT) -> _AnyHookSigT")  [no-any-decorated]
+ tanjun/abc.py:2337:5: error: Type of decorated function contains type "Any" ("[_AnyHookSigT: (Any, *Any, **Any) -> Coroutine[Any, Any, None] | None] (Hooks[Context] | Hooks[MenuContext] | Hooks[MessageContext] | Hooks[SlashContext], _AnyHookSigT) -> _AnyHookSigT")  [no-any-decorated]
- tanjun/abc.py:2386:5: error: Type of decorated function contains type "Any" ("[_AnyHookSigT: (Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None] | None] (Hooks[Context], _AnyHookSigT) -> _AnyHookSigT")  [no-any-decorated]
+ tanjun/abc.py:2386:5: error: Type of decorated function contains type "Any" ("[_AnyHookSigT: (Any, *Any, **Any) -> Coroutine[Any, Any, None] | None] (Hooks[Context], _AnyHookSigT) -> _AnyHookSigT")  [no-any-decorated]
- tanjun/abc.py:2405:5: error: Type of decorated function contains type "Any" ("[_AnyHookSigT: (Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None] | None] (Hooks[Context] | Hooks[MenuContext] | Hooks[MessageContext] | Hooks[SlashContext], _AnyHookSigT) -> _AnyHookSigT")  [no-any-decorated]
+ tanjun/abc.py:2405:5: error: Type of decorated function contains type "Any" ("[_AnyHookSigT: (Any, *Any, **Any) -> Coroutine[Any, Any, None] | None] (Hooks[Context] | Hooks[MenuContext] | Hooks[MessageContext] | Hooks[SlashContext], _AnyHookSigT) -> _AnyHookSigT")  [no-any-decorated]
- tanjun/abc.py:2454:5: error: Type of decorated function contains type "Any" ("[_AnyHookSigT: (Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None] | None] (Hooks[Context], _AnyHookSigT) -> _AnyHookSigT")  [no-any-decorated]
+ tanjun/abc.py:2454:5: error: Type of decorated function contains type "Any" ("[_AnyHookSigT: (Any, *Any, **Any) -> Coroutine[Any, Any, None] | None] (Hooks[Context], _AnyHookSigT) -> _AnyHookSigT")  [no-any-decorated]
- tanjun/abc.py:2473:5: error: Type of decorated function contains type "Any" ("[_AnyHookSigT: (Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None] | None] (Hooks[Context] | Hooks[MenuContext] | Hooks[MessageContext] | Hooks[SlashContext], _AnyHookSigT) -> _AnyHookSigT")  [no-any-decorated]
+ tanjun/abc.py:2473:5: error: Type of decorated function contains type "Any" ("[_AnyHookSigT: (Any, *Any, **Any) -> Coroutine[Any, Any, None] | None] (Hooks[Context] | Hooks[MenuContext] | Hooks[MessageContext] | Hooks[SlashContext], _AnyHookSigT) -> _AnyHookSigT")  [no-any-decorated]
- tanjun/abc.py:3321:5: error: Type of decorated function contains type "Any" ("(self: Component) -> Mapping[type[Event], Collection[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]]")  [no-any-decorated]
+ tanjun/abc.py:3321:5: error: Type of decorated function contains type "Any" ("(self: Component) -> Mapping[type[Event], Collection[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]]")  [no-any-decorated]
- tanjun/abc.py:3584:5: error: Type of decorated function contains type "Any" ("(self: Component, *event_types: type[Event]) -> [_ListenerCallbackSigT: (Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]] (_ListenerCallbackSigT) -> _ListenerCallbackSigT")  [no-any-decorated]
+ tanjun/abc.py:3584:5: error: Type of decorated function contains type "Any" ("(self: Component, *event_types: type[Event]) -> [_ListenerCallbackSigT: (Any, *Any, **Any) -> Coroutine[Any, Any, None]] (_ListenerCallbackSigT) -> _ListenerCallbackSigT")  [no-any-decorated]
- tanjun/abc.py:3979:5: error: Type of decorated function contains type "Any" ("(self: Client) -> Mapping[type[Event], Collection[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]]")  [no-any-decorated]
+ tanjun/abc.py:3979:5: error: Type of decorated function contains type "Any" ("(self: Client) -> Mapping[type[Event], Collection[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]]")  [no-any-decorated]
- tanjun/abc.py:4523:5: error: Type of decorated function contains type "Any" ("(self: Client, *event_types: type[Event]) -> [_ListenerCallbackSigT: (Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]] (_ListenerCallbackSigT) -> _ListenerCallbackSigT")  [no-any-decorated]
+ tanjun/abc.py:4523:5: error: Type of decorated function contains type "Any" ("(self: Client, *event_types: type[Event]) -> [_ListenerCallbackSigT: (Any, *Any, **Any) -> Coroutine[Any, Any, None]] (_ListenerCallbackSigT) -> _ListenerCallbackSigT")  [no-any-decorated]
- tanjun/hooks.py:188:5: error: Type of decorated function contains type "Any" ("[_AnyErrorHookSigT: (Any, Exception, *None: Any, **None: Any) -> Coroutine[Any, Any, bool | None] | bool | None] (Hooks[Context], _AnyErrorHookSigT) -> _AnyErrorHookSigT")  [no-any-decorated]
+ tanjun/hooks.py:188:5: error: Type of decorated function contains type "Any" ("[_AnyErrorHookSigT: (Any, Exception, *Any, **Any) -> Coroutine[Any, Any, bool | None] | bool | None] (Hooks[Context], _AnyErrorHookSigT) -> _AnyErrorHookSigT")  [no-any-decorated]
- tanjun/hooks.py:238:5: error: Type of decorated function contains type "Any" ("[_AnyParserHookSigT: (Any, ParserError, *None: Any, **None: Any) -> Coroutine[Any, Any, bool | None] | bool | None] (Hooks[Context], _AnyParserHookSigT) -> _AnyParserHookSigT")  [no-any-decorated]
+ tanjun/hooks.py:238:5: error: Type of decorated function contains type "Any" ("[_AnyParserHookSigT: (Any, ParserError, *Any, **Any) -> Coroutine[Any, Any, bool | None] | bool | None] (Hooks[Context], _AnyParserHookSigT) -> _AnyParserHookSigT")  [no-any-decorated]
- tanjun/hooks.py:285:5: error: Type of decorated function contains type "Any" ("[_AnyHookSigT: (Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None] | None] (Hooks[Context], _AnyHookSigT) -> _AnyHookSigT")  [no-any-decorated]
+ tanjun/hooks.py:285:5: error: Type of decorated function contains type "Any" ("[_AnyHookSigT: (Any, *Any, **Any) -> Coroutine[Any, Any, None] | None] (Hooks[Context], _AnyHookSigT) -> _AnyHookSigT")  [no-any-decorated]
- tanjun/hooks.py:332:5: error: Type of decorated function contains type "Any" ("[_AnyHookSigT: (Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None] | None] (Hooks[Context], _AnyHookSigT) -> _AnyHookSigT")  [no-any-decorated]
+ tanjun/hooks.py:332:5: error: Type of decorated function contains type "Any" ("[_AnyHookSigT: (Any, *Any, **Any) -> Coroutine[Any, Any, None] | None] (Hooks[Context], _AnyHookSigT) -> _AnyHookSigT")  [no-any-decorated]
- tanjun/hooks.py:379:5: error: Type of decorated function contains type "Any" ("[_AnyHookSigT: (Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None] | None] (Hooks[Context], _AnyHookSigT) -> _AnyHookSigT")  [no-any-decorated]
+ tanjun/hooks.py:379:5: error: Type of decorated function contains type "Any" ("[_AnyHookSigT: (Any, *Any, **Any) -> Coroutine[Any, Any, None] | None] (Hooks[Context], _AnyHookSigT) -> _AnyHookSigT")  [no-any-decorated]
- tanjun/conversion.py:1535:32: error: Expression type contains "Any" (has type "(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/conversion.py:1535:32: error: Expression type contains "Any" (has type "(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/conversion.py:1535:37: error: Expression type contains "Any" (has type "(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/conversion.py:1535:37: error: Expression type contains "Any" (has type "(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/components.py:303:5: error: Type of decorated function contains type "Any" ("(self: Component) -> Mapping[type[Event], Collection[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]]")  [no-any-decorated]
+ tanjun/components.py:303:5: error: Type of decorated function contains type "Any" ("(self: Component) -> Mapping[type[Event], Collection[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]]")  [no-any-decorated]
- tanjun/components.py:307:16: error: Expression type contains "Any" (has type "CastedView[type[Event], Collection[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
+ tanjun/components.py:307:16: error: Expression type contains "Any" (has type "CastedView[type[Event], Collection[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
- tanjun/components.py:307:37: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
+ tanjun/components.py:307:37: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
- tanjun/components.py:307:54: error: Expression type contains "Any" (has type "(x: list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]) -> list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
+ tanjun/components.py:307:54: error: Expression type contains "Any" (has type "(x: list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]) -> list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
- tanjun/components.py:307:64: error: Expression type contains "Any" (has type "list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
+ tanjun/components.py:307:64: error: Expression type contains "Any" (has type "list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
- tanjun/components.py:328:27: error: Expression type contains "Any" (has type "(type[Event], list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]])")  [no-any-expr]
+ tanjun/components.py:328:27: error: Expression type contains "Any" (has type "(type[Event], list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]])")  [no-any-expr]
- tanjun/components.py:328:27: error: Expression type contains "Any" (has type "list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
+ tanjun/components.py:328:27: error: Expression type contains "Any" (has type "list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
- tanjun/components.py:329:20: error: Expression type contains "Any" (has type "(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]")  [no-any-expr]
+ tanjun/components.py:329:20: error: Expression type contains "Any" (has type "(Any, *Any, **Any) -> Coroutine[Any, Any, None]")  [no-any-expr]
- tanjun/components.py:329:20: error: Expression type contains "Any" (has type "list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
+ tanjun/components.py:329:20: error: Expression type contains "Any" (has type "list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
- tanjun/components.py:329:21: error: Expression type contains "Any" (has type "(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]")  [no-any-expr]
+ tanjun/components.py:329:21: error: Expression type contains "Any" (has type "(Any, *Any, **Any) -> Coroutine[Any, Any, None]")  [no-any-expr]
- tanjun/components.py:329:31: error: Expression type contains "Any" (has type "(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]")  [no-any-expr]
+ tanjun/components.py:329:31: error: Expression type contains "Any" (has type "(Any, *Any, **Any) -> Coroutine[Any, Any, None]")  [no-any-expr]
- tanjun/components.py:329:57: error: Expression type contains "Any" (has type "list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
+ tanjun/components.py:329:57: error: Expression type contains "Any" (has type "list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
- tanjun/components.py:329:92: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
+ tanjun/components.py:329:92: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
- tanjun/components.py:329:92: error: Expression type contains "Any" (has type "dict_items[type[Event], list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
+ tanjun/components.py:329:92: error: Expression type contains "Any" (has type "dict_items[type[Event], list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
- tanjun/components.py:995:32: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
+ tanjun/components.py:995:32: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
- tanjun/components.py:995:32: error: Expression type contains "Any" (has type "list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
+ tanjun/components.py:995:32: error: Expression type contains "Any" (has type "list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
- tanjun/components.py:999:17: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
+ tanjun/components.py:999:17: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
- tanjun/components.py:999:42: error: Expression type contains "Any" (has type "list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
+ tanjun/components.py:999:42: error: Expression type contains "Any" (has type "list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
- tanjun/components.py:1002:17: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
+ tanjun/components.py:1002:17: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
- tanjun/components.py:1002:17: error: Expression type contains "Any" (has type "list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
+ tanjun/components.py:1002:17: error: Expression type contains "Any" (has type "list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
- tanjun/components.py:1011:9: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
+ tanjun/components.py:1011:9: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
- tanjun/components.py:1011:9: error: Expression type contains "Any" (has type "list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
+ tanjun/components.py:1011:9: error: Expression type contains "Any" (has type "list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
- tanjun/components.py:1012:16: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
+ tanjun/components.py:1012:16: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
- tanjun/components.py:1012:16: error: Expression type contains "Any" (has type "list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
+ tanjun/components.py:1012:16: error: Expression type contains "Any" (has type "list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
- tanjun/components.py:1013:17: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
+ tanjun/components.py:1013:17: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
- tanjun/components.py:1030:16: error: Expression type contains "Any" (has type "[_ListenerCallbackSigT: (Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]] (_ListenerCallbackSigT) -> _ListenerCallbackSigT")  [no-any-expr]
+ tanjun/components.py:1030:16: error: Expression type contains "Any" (has type "[_ListenerCallbackSigT: (Any, *Any, **Any) -> Coroutine[Any, Any, None]] (_ListenerCallbackSigT) -> _ListenerCallbackSigT")  [no-any-expr]
- tanjun/components.py:1140:9: error: Expression type contains "Any" (has type "(type[Event], list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]])")  [no-any-expr]
+ tanjun/components.py:1140:9: error: Expression type contains "Any" (has type "(type[Event], list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]])")  [no-any-expr]
- tanjun/components.py:1140:9: error: Expression type contains "Any" (has type "list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
+ tanjun/components.py:1140:9: error: Expression type contains "Any" (has type "list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
- tanjun/components.py:1140:33: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
+ tanjun/components.py:1140:33: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
- tanjun/components.py:1140:33: error: Expression type contains "Any" (has type "dict_items[type[Event], list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
+ tanjun/components.py:1140:33: error: Expression type contains "Any" (has type "dict_items[type[Event], list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
- tanjun/components.py:1141:13: error: Expression type contains "Any" (has type "(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]")  [no-any-expr]
+ tanjun/components.py:1141:13: error: Expression type contains "Any" (has type "(Any, *Any, **Any) -> Coroutine[Any, Any, None]")  [no-any-expr]
- tanjun/components.py:1141:29: error: Expression type contains "Any" (has type "list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
+ tanjun/components.py:1141:29: error: Expression type contains "Any" (has type "list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
- tanjun/components.py:1142:50: error: Expression type contains "Any" (has type "(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]")  [no-any-expr]
+ tanjun/components.py:1142:50: error: Expression type contains "Any" (has type "(Any, *Any, **Any) -> Coroutine[Any, Any, None]")  [no-any-expr]
- tanjun/components.py:1155:9: error: Expression type contains "Any" (has type "(type[Event], list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]])")  [no-any-expr]
+ tanjun/components.py:1155:9: error: Expression type contains "Any" (has type "(type[Event], list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]])")  [no-any-expr]
- tanjun/components.py:1155:9: error: Expression type contains "Any" (has type "list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
+ tanjun/components.py:1155:9: error: Expression type contains "Any" (has type "list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
- tanjun/components.py:1155:33: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
+ tanjun/components.py:1155:33: error: Expression type contains "Any" (has type "dict[type[Event], list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
- tanjun/components.py:1155:33: error: Expression type contains "Any" (has type "dict_items[type[Event], list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
+ tanjun/components.py:1155:33: error: Expression type contains "Any" (has type "dict_items[type[Event], list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]]")  [no-any-expr]
- tanjun/components.py:1156:13: error: Expression type contains "Any" (has type "(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]")  [no-any-expr]
+ tanjun/components.py:1156:13: error: Expression type contains "Any" (has type "(Any, *Any, **Any) -> Coroutine[Any, Any, None]")  [no-any-expr]
- tanjun/components.py:1156:29: error: Expression type contains "Any" (has type "list[(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
+ tanjun/components.py:1156:29: error: Expression type contains "Any" (has type "list[(Any, *Any, **Any) -> Coroutine[Any, Any, None]]")  [no-any-expr]
- tanjun/components.py:1158:57: error: Expression type contains "Any" (has type "(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None]")  [no-any-expr]
+ tanjun/components.py:1158:57: error: Expression type contains "Any" (has type "(Any, *Any, **Any) -> Coroutine[Any, Any, None]")  [no-any-expr]
- tanjun/parsing.py:136:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser] (Self, str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any, *, default: Any = ..., greedy: bool = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:136:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser] (Self, str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any, *, default: Any = ..., greedy: bool = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:150:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser] (Self, str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, str] | str] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, str] | str=..., *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[str] | None = ..., max_value: _CmpProto[str] | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:150:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser] (Self, str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, str] | str] | (str, *Any, **Any) -> Coroutine[Any, Any, str] | str=..., *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[str] | None = ..., max_value: _CmpProto[str] | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:168:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser, _SizedCmpProtoT: _SizedCmpProto[Any]] (Self, str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT, *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _SizedCmpProtoT | None = ..., max_value: _SizedCmpProtoT | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:168:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser, _SizedCmpProtoT: _SizedCmpProto[Any]] (Self, str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT] | (str, *Any, **Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT, *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _SizedCmpProtoT | None = ..., max_value: _SizedCmpProtoT | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:186:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser] (Self, str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Sized] | Sized] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Sized] | Sized, *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:186:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser] (Self, str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Sized] | Sized] | (str, *Any, **Any) -> Coroutine[Any, Any, Sized] | Sized, *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:202:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser, _CmpProtoT: _CmpProto[Any]] (Self, str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT, *, default: Any = ..., greedy: bool = ..., min_value: _CmpProtoT | None = ..., max_value: _CmpProtoT | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:202:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser, _CmpProtoT: _CmpProto[Any]] (Self, str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT] | (str, *Any, **Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT, *, default: Any = ..., greedy: bool = ..., min_value: _CmpProtoT | None = ..., max_value: _CmpProtoT | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:217:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser] (Self, str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any=..., *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[Any] | None = ..., max_value: _CmpProto[Any] | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:217:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser] (Self, str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any=..., *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[Any] | None = ..., max_value: _CmpProto[Any] | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:294:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any, default: Any, empty_value: Any = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:294:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any, default: Any, empty_value: Any = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:309:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, str] | str] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, str] | str = ..., default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[str] | None = ..., max_value: _CmpProto[str] | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:309:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, str] | str] | (str, *Any, **Any) -> Coroutine[Any, Any, str] | str = ..., default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[str] | None = ..., max_value: _CmpProto[str] | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:328:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser, _SizedCmpProtoT: _SizedCmpProto[Any]] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT, default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _SizedCmpProtoT | None = ..., max_value: _SizedCmpProtoT | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:328:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser, _SizedCmpProtoT: _SizedCmpProto[Any]] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT] | (str, *Any, **Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT, default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _SizedCmpProtoT | None = ..., max_value: _SizedCmpProtoT | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:347:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Sized] | Sized] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Sized] | Sized, default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:347:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Sized] | Sized] | (str, *Any, **Any) -> Coroutine[Any, Any, Sized] | Sized, default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:364:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser, _CmpProtoT: _CmpProto[Any]] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT, default: Any, empty_value: Any = ..., min_value: _CmpProtoT | None = ..., max_value: _CmpProtoT | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:364:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser, _CmpProtoT: _CmpProto[Any]] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT] | (str, *Any, **Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT, default: Any, empty_value: Any = ..., min_value: _CmpProtoT | None = ..., max_value: _CmpProtoT | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:380:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any = ..., default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[Any] | None = ..., max_value: _CmpProto[Any] | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:380:5: error: Type of decorated function contains type "Any" ("[Self: AbstractOptionParser] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any = ..., default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[Any] | None = ..., max_value: _CmpProto[Any] | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:643:1: error: Type of decorated function contains type "Any" ("(str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any, *, default: Any = ..., greedy: bool = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:643:1: error: Type of decorated function contains type "Any" ("(str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any, *, default: Any = ..., greedy: bool = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:656:1: error: Type of decorated function contains type "Any" ("(str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, str] | str] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, str] | str=..., *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[str] | None = ..., max_value: _CmpProto[str] | None = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:656:1: error: Type of decorated function contains type "Any" ("(str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, str] | str] | (str, *Any, **Any) -> Coroutine[Any, Any, str] | str=..., *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[str] | None = ..., max_value: _CmpProto[str] | None = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:673:1: error: Type of decorated function contains type "Any" ("[_SizedCmpProtoT: _SizedCmpProto[Any]] (str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT, *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _SizedCmpProtoT | None = ..., max_value: _SizedCmpProtoT | None = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:673:1: error: Type of decorated function contains type "Any" ("[_SizedCmpProtoT: _SizedCmpProto[Any]] (str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT] | (str, *Any, **Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT, *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _SizedCmpProtoT | None = ..., max_value: _SizedCmpProtoT | None = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:690:1: error: Type of decorated function contains type "Any" ("(str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Sized] | Sized] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Sized] | Sized, *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:690:1: error: Type of decorated function contains type "Any" ("(str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Sized] | Sized] | (str, *Any, **Any) -> Coroutine[Any, Any, Sized] | Sized, *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:705:1: error: Type of decorated function contains type "Any" ("[_CmpProtoT: _CmpProto[Any]] (str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT, *, default: Any = ..., greedy: bool = ..., min_value: _CmpProtoT | None = ..., max_value: _CmpProtoT | None = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:705:1: error: Type of decorated function contains type "Any" ("[_CmpProtoT: _CmpProto[Any]] (str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT] | (str, *Any, **Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT, *, default: Any = ..., greedy: bool = ..., min_value: _CmpProtoT | None = ..., max_value: _CmpProtoT | None = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:817:24: error: Expression type contains "Any" (has type "Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:817:24: error: Expression type contains "Any" (has type "Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:832:1: error: Type of decorated function contains type "Any" ("(str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any, *, default: Any = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:832:1: error: Type of decorated function contains type "Any" ("(str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any, *, default: Any = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:839:1: error: Type of decorated function contains type "Any" ("(str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, str] | str] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, str] | str=..., *, default: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[str] | None = ..., max_value: _CmpProto[str] | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:839:1: error: Type of decorated function contains type "Any" ("(str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, str] | str] | (str, *Any, **Any) -> Coroutine[Any, Any, str] | str=..., *, default: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[str] | None = ..., max_value: _CmpProto[str] | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:854:1: error: Type of decorated function contains type "Any" ("[_SizedCmpProtoT: _SizedCmpProto[Any]] (str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT, *, default: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _SizedCmpProtoT | None = ..., max_value: _SizedCmpProtoT | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:854:1: error: Type of decorated function contains type "Any" ("[_SizedCmpProtoT: _SizedCmpProto[Any]] (str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT] | (str, *Any, **Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT, *, default: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _SizedCmpProtoT | None = ..., max_value: _SizedCmpProtoT | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:869:1: error: Type of decorated function contains type "Any" ("(str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Sized] | Sized] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Sized] | Sized, *, default: Any = ..., min_length: int | None = ..., max_length: int | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:869:1: error: Type of decorated function contains type "Any" ("(str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Sized] | Sized] | (str, *Any, **Any) -> Coroutine[Any, Any, Sized] | Sized, *, default: Any = ..., min_length: int | None = ..., max_length: int | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:882:1: error: Type of decorated function contains type "Any" ("[_CmpProtoT: _CmpProto[Any]] (str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT, *, default: Any = ..., min_value: _CmpProtoT | None = ..., max_value: _CmpProtoT | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:882:1: error: Type of decorated function contains type "Any" ("[_CmpProtoT: _CmpProto[Any]] (str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT] | (str, *Any, **Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT, *, default: Any = ..., min_value: _CmpProtoT | None = ..., max_value: _CmpProtoT | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:990:20: error: Expression type contains "Any" (has type "Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:990:20: error: Expression type contains "Any" (has type "Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1001:1: error: Type of decorated function contains type "Any" ("(str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any, *, default: Any = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:1001:1: error: Type of decorated function contains type "Any" ("(str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any, *, default: Any = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:1008:1: error: Type of decorated function contains type "Any" ("(str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, str] | str] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, str] | str=..., *, default: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[str] | None = ..., max_value: _CmpProto[str] | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:1008:1: error: Type of decorated function contains type "Any" ("(str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, str] | str] | (str, *Any, **Any) -> Coroutine[Any, Any, str] | str=..., *, default: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[str] | None = ..., max_value: _CmpProto[str] | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:1023:1: error: Type of decorated function contains type "Any" ("[_SizedCmpProtoT: _SizedCmpProto[Any]] (str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT, *, default: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _SizedCmpProtoT | None = ..., max_value: _SizedCmpProtoT | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:1023:1: error: Type of decorated function contains type "Any" ("[_SizedCmpProtoT: _SizedCmpProto[Any]] (str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT] | (str, *Any, **Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT, *, default: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _SizedCmpProtoT | None = ..., max_value: _SizedCmpProtoT | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:1038:1: error: Type of decorated function contains type "Any" ("(str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Sized] | Sized] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Sized] | Sized, *, default: Any = ..., min_length: int | None = ..., max_length: int | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:1038:1: error: Type of decorated function contains type "Any" ("(str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Sized] | Sized] | (str, *Any, **Any) -> Coroutine[Any, Any, Sized] | Sized, *, default: Any = ..., min_length: int | None = ..., max_length: int | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:1051:1: error: Type of decorated function contains type "Any" ("[_CmpProtoT: _CmpProto[Any]] (str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT, *, default: Any = ..., min_value: _CmpProtoT | None = ..., max_value: _CmpProtoT | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:1051:1: error: Type of decorated function contains type "Any" ("[_CmpProtoT: _CmpProto[Any]] (str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT] | (str, *Any, **Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT, *, default: Any = ..., min_value: _CmpProtoT | None = ..., max_value: _CmpProtoT | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:1157:20: error: Expression type contains "Any" (has type "Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1157:20: error: Expression type contains "Any" (has type "Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1168:1: error: Type of decorated function contains type "Any" ("(str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any, default: Any, empty_value: Any = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:1168:1: error: Type of decorated function contains type "Any" ("(str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any, default: Any, empty_value: Any = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:1182:1: error: Type of decorated function contains type "Any" ("(str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, str] | str] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, str] | str = ..., default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[str] | None = ..., max_value: _CmpProto[str] | None = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:1182:1: error: Type of decorated function contains type "Any" ("(str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, str] | str] | (str, *Any, **Any) -> Coroutine[Any, Any, str] | str = ..., default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[str] | None = ..., max_value: _CmpProto[str] | None = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:1200:1: error: Type of decorated function contains type "Any" ("[_SizedCmpProtoT: _SizedCmpProto[Any]] (str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT, default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _SizedCmpProtoT | None = ..., max_value: _SizedCmpProtoT | None = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:1200:1: error: Type of decorated function contains type "Any" ("[_SizedCmpProtoT: _SizedCmpProto[Any]] (str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT] | (str, *Any, **Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT, default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _SizedCmpProtoT | None = ..., max_value: _SizedCmpProtoT | None = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:1218:1: error: Type of decorated function contains type "Any" ("(str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Sized] | Sized] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Sized] | Sized, default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:1218:1: error: Type of decorated function contains type "Any" ("(str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Sized] | Sized] | (str, *Any, **Any) -> Coroutine[Any, Any, Sized] | Sized, default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:1234:1: error: Type of decorated function contains type "Any" ("[_CmpProtoT: _CmpProto[Any]] (str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT, default: Any, empty_value: Any = ..., min_value: _CmpProtoT | None = ..., max_value: _CmpProtoT | None = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:1234:1: error: Type of decorated function contains type "Any" ("[_CmpProtoT: _CmpProto[Any]] (str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT] | (str, *Any, **Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT, default: Any, empty_value: Any = ..., min_value: _CmpProtoT | None = ..., max_value: _CmpProtoT | None = ..., multi: bool = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:1350:24: error: Expression type contains "Any" (has type "Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1350:24: error: Expression type contains "Any" (has type "Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1365:1: error: Type of decorated function contains type "Any" ("(str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any, default: Any, empty_value: Any = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:1365:1: error: Type of decorated function contains type "Any" ("(str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any, default: Any, empty_value: Any = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:1378:1: error: Type of decorated function contains type "Any" ("(str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, str] | str] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, str] | str = ..., default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[str] | None = ..., max_value: _CmpProto[str] | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:1378:1: error: Type of decorated function contains type "Any" ("(str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, str] | str] | (str, *Any, **Any) -> Coroutine[Any, Any, str] | str = ..., default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[str] | None = ..., max_value: _CmpProto[str] | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:1395:1: error: Type of decorated function contains type "Any" ("[_SizedCmpProtoT: _SizedCmpProto[Any]] (str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT, default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _SizedCmpProtoT | None = ..., max_value: _SizedCmpProtoT | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:1395:1: error: Type of decorated function contains type "Any" ("[_SizedCmpProtoT: _SizedCmpProto[Any]] (str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT] | (str, *Any, **Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT, default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _SizedCmpProtoT | None = ..., max_value: _SizedCmpProtoT | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:1412:1: error: Type of decorated function contains type "Any" ("(str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Sized] | Sized] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Sized] | Sized, default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:1412:1: error: Type of decorated function contains type "Any" ("(str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Sized] | Sized] | (str, *Any, **Any) -> Coroutine[Any, Any, Sized] | Sized, default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:1427:1: error: Type of decorated function contains type "Any" ("[_CmpProtoT: _CmpProto[Any]] (str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT, default: Any, empty_value: Any = ..., min_value: _CmpProtoT | None = ..., max_value: _CmpProtoT | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
+ tanjun/parsing.py:1427:1: error: Type of decorated function contains type "Any" ("[_CmpProtoT: _CmpProto[Any]] (str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT] | (str, *Any, **Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT, default: Any, empty_value: Any = ..., min_value: _CmpProtoT | None = ..., max_value: _CmpProtoT | None = ...) -> [_CommandT: MessageCommand[Any]] (_CommandT) -> _CommandT")  [no-any-decorated]
- tanjun/parsing.py:1541:20: error: Expression type contains "Any" (has type "Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1541:20: error: Expression type contains "Any" (has type "Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1596:23: error: Expression type contains "Any" (has type "Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1596:23: error: Expression type contains "Any" (has type "Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1597:13: error: Expression type contains "Any" (has type "(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1597:13: error: Expression type contains "Any" (has type "(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1597:30: error: Expression type contains "Any" (has type "Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any]")  [no-any-expr]
+ tanjun/parsing.py:1597:30: error: Expression type contains "Any" (has type "Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any]")  [no-any-expr]
- tanjun/parsing.py:1598:37: error: Expression type contains "Any" (has type "(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1598:37: error: Expression type contains "Any" (has type "(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1601:33: error: Expression type contains "Any" (has type "(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1601:33: error: Expression type contains "Any" (has type "(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1607:5: error: Type of decorated function contains type "Any" ("(self: Parameter) -> Sequence[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any]")  [no-any-decorated]
+ tanjun/parsing.py:1607:5: error: Type of decorated function contains type "Any" ("(self: Parameter) -> Sequence[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any]")  [no-any-decorated]
- tanjun/parsing.py:1609:16: error: Expression type contains "Any" (has type "list[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any]")  [no-any-expr]
+ tanjun/parsing.py:1609:16: error: Expression type contains "Any" (has type "list[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any]")  [no-any-expr]
- tanjun/parsing.py:1674:40: error: Expression type contains "Any" (has type "(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1674:40: error: Expression type contains "Any" (has type "(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1678:21: error: Expression type contains "Any" (has type "(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1678:21: error: Expression type contains "Any" (has type "(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1678:46: error: Expression type contains "Any" (has type "(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1678:46: error: Expression type contains "Any" (has type "(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1679:9: error: Expression type contains "Any" (has type "list[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any]")  [no-any-expr]
+ tanjun/parsing.py:1679:9: error: Expression type contains "Any" (has type "list[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any]")  [no-any-expr]
- tanjun/parsing.py:1679:33: error: Expression type contains "Any" (has type "(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1679:33: error: Expression type contains "Any" (has type "(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1683:9: error: Expression type contains "Any" (has type "(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1683:9: error: Expression type contains "Any" (has type "(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1683:26: error: Expression type contains "Any" (has type "list[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any]")  [no-any-expr]
+ tanjun/parsing.py:1683:26: error: Expression type contains "Any" (has type "list[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any]")  [no-any-expr]
- tanjun/parsing.py:1684:27: error: Expression type contains "Any" (has type "(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1684:27: error: Expression type contains "Any" (has type "(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1712:16: error: Expression type contains "Any" (has type "list[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any]")  [no-any-expr]
+ tanjun/parsing.py:1712:16: error: Expression type contains "Any" (has type "list[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any]")  [no-any-expr]
- tanjun/parsing.py:1717:9: error: Expression type contains "Any" (has type "(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1717:9: error: Expression type contains "Any" (has type "(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1717:26: error: Expression type contains "Any" (has type "list[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any]")  [no-any-expr]
+ tanjun/parsing.py:1717:26: error: Expression type contains "Any" (has type "list[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any]")  [no-any-expr]
- tanjun/parsing.py:1719:55: error: Expression type contains "Any" (has type "(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1719:55: error: Expression type contains "Any" (has type "(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1740:28: error: Expression type contains "Any" (has type "(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1740:28: error: Expression type contains "Any" (has type "(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1740:29: error: Expression type contains "Any" (has type "(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1740:29: error: Expression type contains "Any" (has type "(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1740:39: error: Expression type contains "Any" (has type "(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1740:39: error: Expression type contains "Any" (has type "(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1740:67: error: Expression type contains "Any" (has type "list[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any]")  [no-any-expr]
+ tanjun/parsing.py:1740:67: error: Expression type contains "Any" (has type "list[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any]")  [no-any-expr]
- tanjun/parsing.py:1816:24: error: Expression type contains "Any" (has type "Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1816:24: error: Expression type contains "Any" (has type "Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1918:24: error: Expression type contains "Any" (has type "Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:1918:24: error: Expression type contains "Any" (has type "Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:1981:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser] (Self, str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any, *, default: Any = ..., greedy: bool = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:1981:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser] (Self, str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any, *, default: Any = ..., greedy: bool = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:1994:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser] (Self, str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, str] | str] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, str] | str=..., *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[str] | None = ..., max_value: _CmpProto[str] | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:1994:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser] (Self, str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, str] | str] | (str, *Any, **Any) -> Coroutine[Any, Any, str] | str=..., *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[str] | None = ..., max_value: _CmpProto[str] | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:2011:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser, _SizedCmpProtoT: _SizedCmpProto[Any]] (Self, str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT, *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _SizedCmpProtoT | None = ..., max_value: _SizedCmpProtoT | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:2011:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser, _SizedCmpProtoT: _SizedCmpProto[Any]] (Self, str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT] | (str, *Any, **Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT, *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _SizedCmpProtoT | None = ..., max_value: _SizedCmpProtoT | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:2028:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser] (Self, str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Sized] | Sized] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Sized] | Sized, *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:2028:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser] (Self, str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Sized] | Sized] | (str, *Any, **Any) -> Coroutine[Any, Any, Sized] | Sized, *, default: Any = ..., greedy: bool = ..., min_length: int | None = ..., max_length: int | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:2043:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser, _CmpProtoT: _CmpProto[Any]] (Self, str, /, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT, *, default: Any = ..., greedy: bool = ..., min_value: _CmpProtoT | None = ..., max_value: _CmpProtoT | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:2043:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser, _CmpProtoT: _CmpProto[Any]] (Self, str, /, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT] | (str, *Any, **Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT, *, default: Any = ..., greedy: bool = ..., min_value: _CmpProtoT | None = ..., max_value: _CmpProtoT | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:2075:24: error: Expression type contains "Any" (has type "Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:2075:24: error: Expression type contains "Any" (has type "Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/parsing.py:2098:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any, default: Any, empty_value: Any = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:2098:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any, default: Any, empty_value: Any = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:2112:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, str] | str] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, str] | str = ..., default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[str] | None = ..., max_value: _CmpProto[str] | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:2112:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, str] | str] | (str, *Any, **Any) -> Coroutine[Any, Any, str] | str = ..., default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _CmpProto[str] | None = ..., max_value: _CmpProto[str] | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:2130:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser, _SizedCmpProtoT: _SizedCmpProto[Any]] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT, default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _SizedCmpProtoT | None = ..., max_value: _SizedCmpProtoT | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:2130:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser, _SizedCmpProtoT: _SizedCmpProto[Any]] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT] | (str, *Any, **Any) -> Coroutine[Any, Any, _SizedCmpProtoT] | _SizedCmpProtoT, default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., min_value: _SizedCmpProtoT | None = ..., max_value: _SizedCmpProtoT | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:2148:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Sized] | Sized] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Sized] | Sized, default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:2148:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Sized] | Sized] | (str, *Any, **Any) -> Coroutine[Any, Any, Sized] | Sized, default: Any, empty_value: Any = ..., min_length: int | None = ..., max_length: int | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:2164:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser, _CmpProtoT: _CmpProto[Any]] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT, default: Any, empty_value: Any = ..., min_value: _CmpProtoT | None = ..., max_value: _CmpProtoT | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
+ tanjun/parsing.py:2164:5: error: Type of decorated function contains type "Any" ("[Self: ShlexParser, _CmpProtoT: _CmpProto[Any]] (Self, str, str, /, *names: str, *, converters: Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT] | (str, *Any, **Any) -> Coroutine[Any, Any, _CmpProtoT] | _CmpProtoT, default: Any, empty_value: Any = ..., min_value: _CmpProtoT | None = ..., max_value: _CmpProtoT | None = ..., multi: bool = ...) -> Self")  [no-any-decorated]
- tanjun/parsing.py:2201:24: error: Expression type contains "Any" (has type "Iterable[(str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any] | (str, *None: Any, **None: Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
+ tanjun/parsing.py:2201:24: error: Expression type contains "Any" (has type "Iterable[(str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any] | (str, *Any, **Any) -> Coroutine[Any, Any, Any] | Any")  [no-any-expr]
- tanjun/dependencies/limiters.py:1302:30: error: Argument 1 to "add_pre_execution" of "Hooks" has incompatible type "CooldownPreExecution"; expected "(Context, *None: Any, **None: Any) -> Coroutine[Any, Any, None] | None"  [arg-type]
+ tanjun/dependencies/limiters.py:1302:30: error: Argument 1 to "add_pre_execution" of "Hooks" has incompatible type "CooldownPreExecution"; expected "(Context, *Any, **Any) -> Coroutine[Any, Any, None] | None"  [arg-type]
- tanjun/dependencies/limiters.py:1302:30: error: Argument 1 to "add_pre_execution" of "Hooks" has incompatible type "CooldownPreExecution"; expected "(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None] | None"  [arg-type]
+ tanjun/dependencies/limiters.py:1302:30: error: Argument 1 to "add_pre_execution" of "Hooks" has incompatible type "CooldownPreExecution"; expected "(Any, *Any, **Any) -> Coroutine[Any, Any, None] | None"  [arg-type]
- tanjun/dependencies/limiters.py:1302:64: error: Argument 1 to "add_post_execution" of "Hooks" has incompatible type "CooldownPostExecution"; expected "(Context, *None: Any, **None: Any) -> Coroutine[Any, Any, None] | None"  [arg-type]
+ tanjun/dependencies/limiters.py:1302:64: error: Argument 1 to "add_post_execution" of "Hooks" has incompatible type "CooldownPostExecution"; expected "(Context, *Any, **Any) -> Coroutine[Any, Any, None] | None"  [arg-type]
- tanjun/dependencies/limiters.py:1302:64: error: Argument 1 to "add_post_execution" of "Hooks" has incompatible type "CooldownPostExecution"; expected "(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None] | None"  [arg-type]
+ tanjun/dependencies/limiters.py:1302:64: error: Argument 1 to "add_post_execution" of "Hooks" has incompatible type "CooldownPostExecution"; expected "(Any, *Any, **Any) -> Coroutine[Any, Any, None] | None"  [arg-type]
- tanjun/dependencies/limiters.py:1796:30: error: Argument 1 to "add_pre_execution" of "Hooks" has incompatible type "ConcurrencyPreExecution"; expected "(Context, *None: Any, **None: Any) -> Coroutine[Any, Any, None] | None"  [arg-type]
+ tanjun/dependencies/limiters.py:1796:30: error: Argument 1 to "add_pre_execution" of "Hooks" has incompatible type "ConcurrencyPreExecution"; expected "(Context, *Any, **Any) -> Coroutine[Any, Any, None] | None"  [arg-type]
- tanjun/dependencies/limiters.py:1796:30: error: Argument 1 to "add_pre_execution" of "Hooks" has incompatible type "ConcurrencyPreExecution"; expected "(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None] | None"  [arg-type]
+ tanjun/dependencies/limiters.py:1796:30: error: Argument 1 to "add_pre_execution" of "Hooks" has incompatible type "ConcurrencyPreExecution"; expected "(Any, *Any, **Any) -> Coroutine[Any, Any, None] | None"  [arg-type]
- tanjun/dependencies/limiters.py:1796:64: error: Argument 1 to "add_post_execution" of "Hooks" has incompatible type "ConcurrencyPostExecution"; expected "(Context, *None: Any, **None: Any) -> Coroutine[Any, Any, None] | None"  [arg-type]
+ tanjun/dependencies/limiters.py:1796:64: error: Argument 1 to "add_post_execution" of "Hooks" has incompatible type "ConcurrencyPostExecution"; expected "(Context, *Any, **Any) -> Coroutine[Any, Any, None] | None"  [arg-type]
- tanjun/dependencies/limiters.py:1796:64: error: Argument 1 to "add_post_execution" of "Hooks" has incompatible type "ConcurrencyPostExecution"; expected "(Any, *None: Any, **None: Any) -> Coroutine[Any, Any, None] | None"  [arg-type]
+ tanjun/dependencies/limiters.py:1796:64: error: Argument 1 to "add_post_execution" of "Hooks" has incompatible type "ConcurrencyPostExecution"; expected "(Any, *Any, **Any) -> Coroutine[Any, Any, None] | None"  [arg-type]
- tanjun/checks.py:624:18: error: Argument 2 to "_optional_kwargs" has incompatible type "DmCheck"; expected "(Context, *None: Any, **None: Any) -> Coroutine[Any, Any, bool] | bool"  [arg-type]
+ tanjun/checks.py:624:18: error: Argument 2 to "_optional_kwargs" has incompatible type "DmCheck"; expected "(Context, *Any, **Any) -> Coroutine[Any, Any, bool] | bool"  [arg-type]
- tanjun/checks.py:690:18: error: Argument 2 to "_optional_kwargs" has incompatible type "GuildCheck"; expected "(Context, *None: Any, **None: Any) -> Coroutine[Any, Any, bool] | bool"  [arg-type]
+ tanjun/checks.py:690:18: error: Argument 2 to "_optional_kwargs" has incompatible type "GuildCheck"; expected "(Context, *Any, **Any) -> Coroutine[Any, Any, bool] | bool"  [arg-type]
- tanjun/checks.py:752:18: error: Argument 2 to "_optional_kwargs" has incompatible type "NsfwCheck"; expected "(Context, *None: Any, **None: Any) -> Coroutine[Any, Any, bool] | bool"  [arg-type]
+ tanjun/checks.py:752:18: error: Argument 2 to "_optional_kwargs" has incompatible type "NsfwCheck"; expected "(Context, *Any, **Any) -> Coroutine[Any, Any, bool] | bool"  [arg-type]
- tanjun/checks.py:814:18: error: Argument 2 to "_optional_kwargs" has incompatible type "SfwCheck"; expected "(Context, *None: Any, **None: Any) -> Coroutine[Any, Any, bool] | bool"  [arg-type]
+ tanjun/checks.py:814:18: error: Argument 2 to "_optional_kwargs" has incompatible type "SfwCheck"; expected "(Context, *Any, **Any) -> Coroutine[Any, Any, bool] | bool"  [arg-type]
- tanjun/checks.py:876:18: error: Argument 2 to "_optional_kwargs" has incompatible type "OwnerCheck"; expected "(Context, *None: Any, **None: Any) -> Coroutine[Any, Any, bool] | bool"  [arg-type]
+ tanjun/checks.py:876:18: error: Argument 2 to "_optional_kwargs" has incompatible type "OwnerCheck"; expected "(Context, *Any, **Any) -> Coroutine[Any, Any, bool] | bool"  [arg-type]
- tanjun/checks.py:932:9: error: Argument 2 to "_add_to_command" has incompatible type "AuthorPermissionCheck"; expected "(Context, *None: Any, **None: Any) -> Coroutine[Any, Any, bool] | bool"  [arg-type]
+ tanjun/checks.py:932:9: error: Argument 2 to "_add_to_command" has incompatible type "AuthorPermissionCheck"; expected "(Context, *Any, **Any) -> Coroutine[Any, Any, bool] | bool"  [arg-type]
- tanjun/checks.py:989:9: error: Argument 2 to "_add_to_command" has incompatible type "OwnPermissionCheck"; expected "(Context, *None: Any, **None: Any) -> Coroutine[Any, Any, bool] | bool"  [arg-type]

... (truncated 227 lines) ...

streamlit (https://github.com/streamlit/streamlit)
- lib/tests/streamlit/watcher/util_test.py:30:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/watcher/util_test.py:30:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/watcher/util_test.py:39:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/watcher/util_test.py:39:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/watcher/local_sources_watcher_test.py:335:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/watcher/local_sources_watcher_test.py:335:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/watcher/path_watcher_test.py:129:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/watcher/path_watcher_test.py:129:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/runtime/secrets_test.py:333:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/runtime/secrets_test.py:333:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/runtime/secrets_test.py:345:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/runtime/secrets_test.py:345:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/runtime/app_session_test.py:287:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/runtime/app_session_test.py:287:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/runtime/app_session_test.py:370:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/runtime/app_session_test.py:370:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/elements/element_utils_test.py:84:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/elements/element_utils_test.py:84:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/elements/element_utils_test.py:98:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/elements/element_utils_test.py:98:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/elements/element_utils_test.py:112:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/elements/element_utils_test.py:112:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/elements/element_utils_test.py:131:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/elements/element_utils_test.py:131:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/elements/element_utils_test.py:146:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/elements/element_utils_test.py:146:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/connections/sql_connection_test.py:46:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> None")  [no-any-expr]
+ lib/tests/streamlit/connections/sql_connection_test.py:46:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> None")  [no-any-expr]
- lib/tests/streamlit/connections/sql_connection_test.py:52:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/connections/sql_connection_test.py:52:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/connections/sql_connection_test.py:62:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/connections/sql_connection_test.py:62:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/connections/sql_connection_test.py:77:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/connections/sql_connection_test.py:77:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/connections/sql_connection_test.py:123:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/connections/sql_connection_test.py:123:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/connections/sql_connection_test.py:133:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/connections/sql_connection_test.py:133:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/connections/sql_connection_test.py:175:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> None")  [no-any-expr]
+ lib/tests/streamlit/connections/sql_connection_test.py:175:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> None")  [no-any-expr]
- lib/tests/streamlit/connections/sql_connection_test.py:199:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/connections/sql_connection_test.py:199:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/connections/snowpark_connection_test.py:46:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> None")  [no-any-expr]
+ lib/tests/streamlit/connections/snowpark_connection_test.py:46:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> None")  [no-any-expr]
- lib/tests/streamlit/connections/snowpark_connection_test.py:61:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/connections/snowpark_connection_test.py:61:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/connections/snowflake_connection_test.py:56:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/connections/snowflake_connection_test.py:56:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/web/bootstrap_test.py:382:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> None")  [no-any-expr]
+ lib/tests/streamlit/web/bootstrap_test.py:382:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> None")  [no-any-expr]
- lib/tests/streamlit/web/bootstrap_test.py:385:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/web/bootstrap_test.py:385:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/web/bootstrap_test.py:394:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/web/bootstrap_test.py:394:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/web/bootstrap_test.py:406:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> None")  [no-any-expr]
+ lib/tests/streamlit/web/bootstrap_test.py:406:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> None")  [no-any-expr]
- lib/tests/streamlit/web/bootstrap_test.py:412:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/web/bootstrap_test.py:412:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/web/bootstrap_test.py:456:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> None")  [no-any-expr]
+ lib/tests/streamlit/web/bootstrap_test.py:456:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> None")  [no-any-expr]
- lib/tests/streamlit/web/bootstrap_test.py:459:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/web/bootstrap_test.py:459:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/web/bootstrap_test.py:464:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> None")  [no-any-expr]
+ lib/tests/streamlit/web/bootstrap_test.py:464:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> None")  [no-any-expr]
- lib/tests/streamlit/web/bootstrap_test.py:468:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/web/bootstrap_test.py:468:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/runtime/legacy_caching/caching_test.py:118:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/runtime/legacy_caching/caching_test.py:118:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/elements/number_input_test.py:284:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/elements/number_input_test.py:284:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/runtime/caching/cache_data_api_test.py:305:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> None")  [no-any-expr]
+ lib/tests/streamlit/runtime/caching/cache_data_api_test.py:305:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> None")  [no-any-expr]
- lib/tests/streamlit/runtime/caching/cache_data_api_test.py:314:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/runtime/caching/cache_data_api_test.py:314:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/runtime/caching/cache_data_api_test.py:325:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> None")  [no-any-expr]
+ lib/tests/streamlit/runtime/caching/cache_data_api_test.py:325:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> None")  [no-any-expr]
- lib/tests/streamlit/runtime/caching/cache_data_api_test.py:331:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/runtime/caching/cache_data_api_test.py:331:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/runtime/caching/cache_data_api_test.py:343:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> None")  [no-any-expr]
+ lib/tests/streamlit/runtime/caching/cache_data_api_test.py:343:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> None")  [no-any-expr]
- lib/tests/streamlit/runtime/caching/cache_data_api_test.py:349:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/runtime/caching/cache_data_api_test.py:349:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/runtime/caching/cache_data_api_test.py:396:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/runtime/caching/cache_data_api_test.py:396:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/runtime/caching/cache_data_api_test.py:445:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/runtime/caching/cache_data_api_test.py:445:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]
- lib/tests/streamlit/runtime/caching/cache_data_api_test.py:461:6: error: Expression type contains "Any" (has type "(*None: Any, **None: Any) -> None")  [no-any-expr]
+ lib/tests/streamlit/runtime/caching/cache_data_api_test.py:461:6: error: Expression type contains "Any" (has type "(*Any, **Any) -> None")  [no-any-expr]
- lib/tests/streamlit/runtime/caching/cache_data_api_test.py:470:5: error: Type of decorated function contains type "Any" ("(*None: Any, **None: Any) -> None")  [no-any-decorated]
+ lib/tests/streamlit/runtime/caching/cache_data_api_test.py:470:5: error: Type of decorated function contains type "Any" ("(*Any, **Any) -> None")  [no-any-decorated]

discord.py (https://github.com/Rapptz/discord.py)
- discord/app_commands/errors.py:106:37: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | ContextMenu")  [no-any-expr]
+ discord/app_commands/errors.py:106:37: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | ContextMenu")  [no-any-expr]
- discord/app_commands/errors.py:417:42: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | ContextMenu | Group")  [no-any-expr]
+ discord/app_commands/errors.py:417:42: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | ContextMenu | Group")  [no-any-expr]
- discord/app_commands/translator.py:77:5: error: Type of decorated function contains type "Any" ("(self: TranslationContext[_L@TranslationContext, _D@TranslationContext], location: TranslationContextLocation.command_name, data: Command[Any, [*None: Any, **None: Any], Any] | ContextMenu) -> None")  [no-any-decorated]
+ discord/app_commands/translator.py:77:5: error: Type of decorated function contains type "Any" ("(self: TranslationContext[_L@TranslationContext, _D@TranslationContext], location: TranslationContextLocation.command_name, data: Command[Any, [*Any, **Any], Any] | ContextMenu) -> None")  [no-any-decorated]
- discord/app_commands/translator.py:83:5: error: Type of decorated function contains type "Any" ("(self: TranslationContext[_L@TranslationContext, _D@TranslationContext], location: TranslationContextLocation.command_description, data: Command[Any, [*None: Any, **None: Any], Any]) -> None")  [no-any-decorated]
+ discord/app_commands/translator.py:83:5: error: Type of decorated function contains type "Any" ("(self: TranslationContext[_L@TranslationContext, _D@TranslationContext], location: TranslationContextLocation.command_description, data: Command[Any, [*Any, **Any], Any]) -> None")  [no-any-decorated]
- discord/interactions.py:307:26: error: Expression type contains "Any" (has type "(Command[Any, [*None: Any, **None: Any], Any], list[ApplicationCommandInteractionDataOption])")  [no-any-expr]
+ discord/interactions.py:307:26: error: Expression type contains "Any" (has type "(Command[Any, [*Any, **Any], Any], list[ApplicationCommandInteractionDataOption])")  [no-any-expr]
- discord/interactions.py:307:26: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ discord/interactions.py:307:26: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any]")  [no-any-expr]
- discord/interactions.py:313:6: error: Expression type contains "Any" (has type "(self: Interaction[ClientT@Interaction]) -> Command[Any, [*None: Any, **None: Any], Any] | ContextMenu | None")  [no-any-expr]
+ discord/interactions.py:313:6: error: Expression type contains "Any" (has type "(self: Interaction[ClientT@Interaction]) -> Command[Any, [*Any, **Any], Any] | ContextMenu | None")  [no-any-expr]
- discord/interactions.py:314:5: error: Type of decorated function contains type "Any" ("CachedSlotProperty[Interaction[ClientT@Interaction], Command[Any, [*None: Any, **None: Any], Any] | ContextMenu | None]")  [no-any-decorated]
+ discord/interactions.py:314:5: error: Type of decorated function contains type "Any" ("CachedSlotProperty[Interaction[ClientT@Interaction], Command[Any, [*Any, **Any], Any] | ContextMenu | None]")  [no-any-decorated]
- discord/interactions.py:333:30: error: Expression type contains "Any" (has type "(Command[Any, [*None: Any, **None: Any], Any], list[ApplicationCommandInteractionDataOption])")  [no-any-expr]
+ discord/interactions.py:333:30: error: Expression type contains "Any" (has type "(Command[Any, [*Any, **Any], Any], list[ApplicationCommandInteractionDataOption])")  [no-any-expr]
- discord/interactions.py:333:30: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ discord/interactions.py:333:30: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any]")  [no-any-expr]
- discord/interactions.py:337:24: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ discord/interactions.py:337:24: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any]")  [no-any-expr]
- discord/interactions.py:582:20: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | ContextMenu | None")  [no-any-expr]
+ discord/interactions.py:582:20: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | ContextMenu | None")  [no-any-expr]
- discord/interactions.py:582:20: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | ContextMenu | Message | None")  [no-any-expr]
+ discord/interactions.py:582:20: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | ContextMenu | Message | None")  [no-any-expr]
- discord/client.py:1161:5: error: Type of decorated function contains type "Any" ("[Self: Client] (Self, 'app_command_completion', /, *, check: (Interaction[Self], Command[Any, [*None: Any, **None: Any], Any] | ContextMenu) -> bool | None, timeout: float | None = ...) -> Coroutine[Any, Any, (Interaction[Self], Command[Any, [*None: Any, **None: Any], Any] | ContextMenu)]")  [no-any-decorated]
+ discord/client.py:1161:5: error: Type of decorated function contains type "Any" ("[Self: Client] (Self, 'app_command_completion', /, *, check: (Interaction[Self], Command[Any, [*Any, **Any], Any] | ContextMenu) -> bool | None, timeout: float | None = ...) -> Coroutine[Any, Any, (Interaction[Self], Command[Any, [*Any, **Any], Any] | ContextMenu)]")  [no-any-decorated]
- discord/app_commands/tree.py:310:41: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | ContextMenu | Group")  [no-any-expr]
+ discord/app_commands/tree.py:310:41: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | ContextMenu | Group")  [no-any-expr]
- discord/app_commands/tree.py:311:23: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | ContextMenu | Group")  [no-any-expr]
+ discord/app_commands/tree.py:311:23: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | ContextMenu | Group")  [no-any-expr]
- discord/app_commands/tree.py:346:29: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | Group")  [no-any-expr]
+ discord/app_commands/tree.py:346:29: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | Group")  [no-any-expr]
- discord/app_commands/tree.py:351:16: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | Group")  [no-any-expr]
+ discord/app_commands/tree.py:351:16: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | Group")  [no-any-expr]
- discord/app_commands/tree.py:351:16: error: Expression type contains "Any" (has type "Group | Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ discord/app_commands/tree.py:351:16: error: Expression type contains "Any" (has type "Group | Command[Any, [*Any, **Any], Any]")  [no-any-expr]
- discord/app_commands/tree.py:351:39: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | Group")  [no-any-expr]
+ discord/app_commands/tree.py:351:39: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | Group")  [no-any-expr]
- discord/app_commands/tree.py:352:16: error: Expression type contains "Any" (has type "Group | Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ discord/app_commands/tree.py:352:16: error: Expression type contains "Any" (has type "Group | Command[Any, [*Any, **Any], Any]")  [no-any-expr]
- discord/app_commands/tree.py:369:34: error: Expression type contains "Any" (has type "Group | Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ discord/app_commands/tree.py:369:34: error: Expression type contains "Any" (has type "Group | Command[Any, [*Any, **Any], Any]")  [no-any-expr]
- discord/app_commands/tree.py:378:43: error: Expression type contains "Any" (has type "Group | Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ discord/app_commands/tree.py:378:43: error: Expression type contains "Any" (has type "Group | Command[Any, [*Any, **Any], Any]")  [no-any-expr]
- discord/app_commands/tree.py:392:5: error: Type of decorated function contains type "Any" ("(CommandTree[ClientT@CommandTree], str, /, *, guild: Snowflake | None = ..., type: AppCommandType.chat_input = ...) -> Command[Any, [*None: Any, **None: Any], Any] | Group | None")  [no-any-decorated]
+ discord/app_commands/tree.py:392:5: error: Type of decorated function contains type "Any" ("(CommandTree[ClientT@CommandTree], str, /, *, guild: Snowflake | None = ..., type: AppCommandType.chat_input = ...) -> Command[Any, [*Any, **Any], Any] | Group | None")  [no-any-decorated]
- discord/app_commands/tree.py:403:5: error: Type of decorated function contains type "Any" ("(CommandTree[ClientT@CommandTree], str, /, *, guild: Snowflake | None = ..., type: AppCommandType) -> Command[Any, [*None: Any, **None: Any], Any] | ContextMenu | Group | None")  [no-any-decorated]
+ discord/app_commands/tree.py:403:5: error: Type of decorated function contains type "Any" ("(CommandTree[ClientT@CommandTree], str, /, *, guild: Snowflake | None = ..., type: AppCommandType) -> Command[Any, [*Any, **Any], Any] | ContextMenu | Group | None")  [no-any-decorated]
- discord/app_commands/tree.py:446:24: error: Expression type contains "Any" (has type "Command[Untyped, Untyped, Untyped] | Group | Command[Any, [*None: Any, **None: Any], Any] | ContextMenu | None")  [no-any-expr]
+ discord/app_commands/tree.py:446:24: error: Expression type contains "Any" (has type "Command[Untyped, Untyped, Untyped] | Group | Command[Any, [*Any, **Any], Any] | ContextMenu | None")  [no-any-expr]
- discord/app_commands/tree.py:453:28: error: Expression type contains "Any" (has type "Command[Untyped, Untyped, Untyped] | Group | Command[Any, [*None: Any, **None: Any], Any] | ContextMenu | None")  [no-any-expr]
+ discord/app_commands/tree.py:453:28: error: Expression type contains "Any" (has type "Command[Untyped, Untyped, Untyped] | Group | Command[Any, [*Any, **Any], Any] | ContextMenu | None")  [no-any-expr]
- discord/app_commands/tree.py:457:20: error: Expression type contains "Any" (has type "ContextMenu | Command[Any, [*None: Any, **None: Any], Any] | Group | None")  [no-any-expr]
+ discord/app_commands/tree.py:457:20: error: Expression type contains "Any" (has type "ContextMenu | Command[Any, [*Any, **Any], Any] | Group | None")  [no-any-expr]
- discord/app_commands/tree.py:512:5: error: Type of decorated function contains type "Any" ("(CommandTree[ClientT@CommandTree], str, /, *, guild: Snowflake | None = ..., type: AppCommandType.chat_input = ...) -> Command[Any, [*None: Any, **None: Any], Any] | Group | None")  [no-any-decorated]
+ discord/app_commands/tree.py:512:5: error: Type of decorated function contains type "Any" ("(CommandTree[ClientT@CommandTree], str, /, *, guild: Snowflake | None = ..., type: AppCommandType.chat_input = ...) -> Command[Any, [*Any, **Any], Any] | Group | None")  [no-any-decorated]
- discord/app_commands/tree.py:523:5: error: Type of decorated function contains type "Any" ("(CommandTree[ClientT@CommandTree], str, /, *, guild: Snowflake | None = ..., type: AppCommandType) -> Command[Any, [*None: Any, **None: Any], Any] | ContextMenu | Group | None")  [no-any-decorated]
+ discord/app_commands/tree.py:523:5: error: Type of decorated function contains type "Any" ("(CommandTree[ClientT@CommandTree], str, /, *, guild: Snowflake | None = ..., type: AppCommandType) -> Command[Any, [*Any, **Any], Any] | ContextMenu | Group | None")  [no-any-decorated]
- discord/app_commands/tree.py:586:5: error: Type of decorated function contains type "Any" ("(self: CommandTree[ClientT@CommandTree], *, guild: Snowflake | None = ..., type: AppCommandType.chat_input) -> list[Command[Any, [*None: Any, **None: Any], Any] | Group]")  [no-any-decorated]
+ discord/app_commands/tree.py:586:5: error: Type of decorated function contains type "Any" ("(self: CommandTree[ClientT@CommandTree], *, guild: Snowflake | None = ..., type: AppCommandType.chat_input) -> list[Command[Any, [*Any, **Any], Any] | Group]")  [no-any-decorated]
- discord/app_commands/tree.py:595:5: error: Type of decorated function contains type "Any" ("(self: CommandTree[ClientT@CommandTree], *, guild: Snowflake | None = ..., type: AppCommandType) -> list[Command[Any, [*None: Any, **None: Any], Any] | Group] | list[ContextMenu]")  [no-any-decorated]
+ discord/app_commands/tree.py:595:5: error: Type of decorated function contains type "Any" ("(self: CommandTree[ClientT@CommandTree], *, guild: Snowflake | None = ..., type: AppCommandType) -> list[Command[Any, [*Any, **Any], Any] | Group] | list[ContextMenu]")  [no-any-decorated]
- discord/app_commands/tree.py:604:5: error: Type of decorated function contains type "Any" ("(self: CommandTree[ClientT@CommandTree], *, guild: Snowflake | None = ..., type: AppCommandType | None = ...) -> list[Command[Any, [*None: Any, **None: Any], Any] | Group | ContextMenu]")  [no-any-decorated]
+ discord/app_commands/tree.py:604:5: error: Type of decorated function contains type "Any" ("(self: CommandTree[ClientT@CommandTree], *, guild: Snowflake | None = ..., type: AppCommandType | None = ...) -> list[Command[Any, [*Any, **Any], Any] | Group | ContextMenu]")  [no-any-decorated]
- discord/app_commands/tree.py:639:20: error: Expression type contains "Any" (has type "list[Command[Any, [*None: Any, **None: Any], Any] | Group | ContextMenu]")  [no-any-expr]
+ discord/app_commands/tree.py:639:20: error: Expression type contains "Any" (has type "list[Command[Any, [*Any, **Any], Any] | Group | ContextMenu]")  [no-any-expr]
- discord/app_commands/tree.py:648:28: error: Incompatible return value type (got "list[Never]", expected "list[ContextMenu] | list[Command[Any, [*None: Any, **None: Any], Any] | Group] | list[Command[Any, [*None: Any, **None: Any], Any] | Group | ContextMenu]")  [return-value]
+ discord/app_commands/tree.py:648:28: error: Incompatible return value type (got "list[Never]", expected "list[ContextMenu] | list[Command[Any, [*Any, **Any], Any] | Group] | list[Command[Any, [*Any, **Any], Any] | Group | ContextMenu]")  [return-value]
- discord/app_commands/tree.py:666:5: error: Type of decorated function contains type "Any" ("(self: CommandTree[ClientT@CommandTree], *, guild: Snowflake | None = ..., type: AppCommandType.chat_input = ...) -> Generator[Command[Any, [*None: Any, **None: Any], Any] | Group, None, None]")  [no-any-decorated]
+ discord/app_commands/tree.py:666:5: error: Type of decorated function contains type "Any" ("(self: CommandTree[ClientT@CommandTree], *, guild: Snowflake | None = ..., type: AppCommandType.chat_input = ...) -> Generator[Command[Any, [*Any, **Any], Any] | Group, None, None]")  [no-any-decorated]
- discord/app_commands/tree.py:675:5: error: Type of decorated function contains type "Any" ("(self: CommandTree[ClientT@CommandTree], *, guild: Snowflake | None = ..., type: AppCommandType) -> Generator[Command[Any, [*None: Any, **None: Any], Any] | Group, None, None] | Generator[ContextMenu, None, None]")  [no-any-decorated]
+ discord/app_commands/tree.py:675:5: error: Type of decorated function contains type "Any" ("(self: CommandTree[ClientT@CommandTree], *, guild: Snowflake | None = ..., type: AppCommandType) -> Generator[Command[Any, [*Any, **Any], Any] | Group, None, None] | Generator[ContextMenu, None, None]")  [no-any-decorated]
- discord/app_commands/tree.py:711:36: error: Expression type contains "Any" (has type "Generator[Command[Any, [*None: Any, **None: Any], Any] | Group, None, None]")  [no-any-expr]
+ discord/app_commands/tree.py:711:36: error: Expression type contains "Any" (has type "Generator[Command[Any, [*Any, **Any], Any] | Group, None, None]")  [no-any-expr]
- discord/app_commands/tree.py:721:40: error: Expression type contains "Any" (has type "Generator[Command[Any, [*None: Any, **None: Any], Any] | Group, None, None]")  [no-any-expr]
+ discord/app_commands/tree.py:721:40: error: Expression type contains "Any" (has type "Generator[Command[Any, [*Any, **Any], Any] | Group, None, None]")  [no-any-expr]
- discord/app_commands/tree.py:734:13: error: Expression type contains "Any" (has type "list[Command[Any, [*None: Any, **None: Any], Any] | Group | ContextMenu]")  [no-any-expr]
+ discord/app_commands/tree.py:734:13: error: Expression type contains "Any" (has type "list[Command[Any, [*Any, **Any], Any] | Group | ContextMenu]")  [no-any-expr]
- discord/app_commands/tree.py:734:24: error: Expression type contains "Any" (has type "Generator[Command[Any, [*None: Any, **None: Any], Any] | Group | ContextMenu, None, None]")  [no-any-expr]
+ discord/app_commands/tree.py:734:24: error: Expression type contains "Any" (has type "Generator[Command[Any, [*Any, **Any], Any] | Group | ContextMenu, None, None]")  [no-any-expr]
- discord/app_commands/tree.py:735:20: error: Expression type contains "Any" (has type "list[Command[Any, [*None: Any, **None: Any], Any] | Group | ContextMenu]")  [no-any-expr]
+ discord/app_commands/tree.py:735:20: error: Expression type contains "Any" (has type "list[Command[Any, [*Any, **Any], Any] | Group | ContextMenu]")  [no-any-expr]
- discord/app_commands/tree.py:741:24: error: Expression type contains "Any" (has type "list[Command[Any, [*None: Any, **None: Any], Any] | Group | ContextMenu]")  [no-any-expr]
+ discord/app_commands/tree.py:741:24: error: Expression type contains "Any" (has type "list[Command[Any, [*Any, **Any], Any] | Group | ContextMenu]")  [no-any-expr]
- discord/app_commands/tree.py:745:17: error: Expression type contains "Any" (has type "list[Command[Any, [*None: Any, **None: Any], Any] | Group | ContextMenu]")  [no-any-expr]
+ discord/app_commands/tree.py:745:17: error: Expression type contains "Any" (has type "list[Command[Any, [*Any, **Any], Any] | Group | ContextMenu]")  [no-any-expr]
- discord/app_commands/tree.py:745:28: error: Expression type contains "Any" (has type "Generator[Command[Any, [*None: Any, **None: Any], Any] | Group | ContextMenu, None, None]")  [no-any-expr]
+ discord/app_commands/tree.py:745:28: error: Expression type contains "Any" (has type "Generator[Command[Any, [*Any, **Any], Any] | Group | ContextMenu, None, None]")  [no-any-expr]
- discord/app_commands/tree.py:746:24: error: Expression type contains "Any" (has type "list[Command[Any, [*None: Any, **None: Any], Any] | Group | ContextMenu]")  [no-any-expr]
+ discord/app_commands/tree.py:746:24: error: Expression type contains "Any" (has type "list[Command[Any, [*Any, **Any], Any] | Group | ContextMenu]")  [no-any-expr]
- discord/app_commands/tree.py:793:19: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | ContextMenu | None")  [no-any-expr]
+ discord/app_commands/tree.py:793:19: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | ContextMenu | None")  [no-any-expr]
- discord/app_commands/tree.py:794:12: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | ContextMenu | None")  [no-any-expr]
+ discord/app_commands/tree.py:794:12: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | ContextMenu | None")  [no-any-expr]
- discord/app_commands/tree.py:795:16: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | ContextMenu")  [no-any-expr]
+ discord/app_commands/tree.py:795:16: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | ContextMenu")  [no-any-expr]
- discord/app_commands/tree.py:798:60: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | ContextMenu")  [no-any-expr]
+ discord/app_commands/tree.py:798:60: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | ContextMenu")  [no-any-expr]
- discord/app_commands/tree.py:1057:20: error: Expression type contains "Any" (has type "list[Command[Any, [*None: Any, **None: Any], Any] | Group | ContextMenu]")  [no-any-expr]
+ discord/app_commands/tree.py:1057:20: error: Expression type contains "Any" (has type "list[Command[Any, [*Any, **Any], Any] | Group | ContextMenu]")  [no-any-expr]
- discord/app_commands/tree.py:1061:23: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | Group | ContextMenu")  [no-any-expr]
+ discord/app_commands/tree.py:1061:23: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | Group | ContextMenu")  [no-any-expr]
- discord/app_commands/tree.py:1061:30: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | Group | ContextMenu")  [no-any-expr]
+ discord/app_commands/tree.py:1061:30: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | Group | ContextMenu")  [no-any-expr]
- discord/app_commands/tree.py:1061:88: error: Expression type contains "Any" (has type "list[Command[Any, [*None: Any, **None: Any], Any] | Group | ContextMenu]")  [no-any-expr]
+ discord/app_commands/tree.py:1061:88: error: Expression type contains "Any" (has type "list[Command[Any, [*Any, **Any], Any] | Group | ContextMenu]")  [no-any-expr]
- discord/app_commands/tree.py:1063:23: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | Group | ContextMenu")  [no-any-expr]
+ discord/app_commands/tree.py:1063:23: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | Group | ContextMenu")  [no-any-expr]
- discord/app_commands/tree.py:1063:24: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | Group | ContextMenu")  [no-any-expr]
+ discord/app_commands/tree.py:1063:24: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | Group | ContextMenu")  [no-any-expr]
- discord/app_commands/tree.py:1063:57: error: Expression type contains "Any" (has type "list[Command[Any, [*None: Any, **None: Any], Any] | Group | ContextMenu]")  [no-any-expr]
+ discord/app_commands/tree.py:1063:57: error: Expression type contains "Any" (has type "list[Command[Any, [*Any, **Any], Any] | Group | ContextMenu]")  [no-any-expr]
- discord/app_commands/tree.py:1072:45: error: Expression type contains "Any" (has type "list[Command[Any, [*None: Any, **None: Any], Any] | Group | ContextMenu]")  [no-any-expr]
+ discord/app_commands/tree.py:1072:45: error: Expression type contains "Any" (has type "list[Command[Any, [*Any, **Any], Any] | Group | ContextMenu]")  [no-any-expr]
- discord/app_commands/tree.py:1078:19: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | ContextMenu | None")  [no-any-expr]
+ discord/app_commands/tree.py:1078:19: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | ContextMenu | None")  [no-any-expr]
- discord/app_commands/tree.py:1081:27: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | ContextMenu | None")  [no-any-expr]
+ discord/app_commands/tree.py:1081:27: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | ContextMenu | None")  [no-any-expr]
- discord/app_commands/tree.py:1082:23: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ discord/app_commands/tree.py:1082:23: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any]")  [no-any-expr]
- discord/app_commands/tree.py:1138:31: error: Expression type contains "Any" (has type "Command[Untyped, Untyped, Untyped] | Command[Any, [*None: Any, **None: Any], Any] | Group")  [no-any-expr]
+ discord/app_commands/tree.py:1138:31: error: Expression type contains "Any" (has type "Command[Untyped, Untyped, Untyped] | Command[Any, [*Any, **Any], Any] | Group")  [no-any-expr]
- discord/app_commands/tree.py:1139:24: error: Expression type contains "Any" (has type "Command[Untyped, Untyped, Untyped] | Command[Any, [*None: Any, **None: Any], Any] | Group | None")  [no-any-expr]
+ discord/app_commands/tree.py:1139:24: error: Expression type contains "Any" (has type "Command[Untyped, Untyped, Untyped] | Command[Any, [*Any, **Any], Any] | Group | None")  [no-any-expr]
- discord/app_commands/tree.py:1149:23: error: Expression type contains "Any" (has type "Command[Untyped, Untyped, Untyped] | Command[Any, [*None: Any, **None: Any], Any] | Group")  [no-any-expr]
+ discord/app_commands/tree.py:1149:23: error: Expression type contains "Any" (has type "Command[Untyped, Untyped, Untyped] | Command[Any, [*Any, **Any], Any] | Group")  [no-any-expr]
- discord/app_commands/tree.py:1155:16: error: Expression type contains "Any" (has type "(Command[Untyped, Untyped, Untyped] | Command[Any, [*None: Any, **None: Any], Any], list[ApplicationCommandInteractionDataOption])")  [no-any-expr]
+ discord/app_commands/tree.py:1155:16: error: Expression type contains "Any" (has type "(Command[Untyped, Untyped, Untyped] | Command[Any, [*Any, **Any], Any], list[ApplicationCommandInteractionDataOption])")  [no-any-expr]
- discord/app_commands/tree.py:1155:17: error: Expression type contains "Any" (has type "Command[Untyped, Untyped, Untyped] | Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ discord/app_commands/tree.py:1155:17: error: Expression type contains "Any" (has type "Command[Untyped, Untyped, Untyped] | Command[Any, [*Any, **Any], Any]")  [no-any-expr]
- discord/app_commands/tree.py:1221:28: error: Expression type contains "Any" (has type "(Command[Any, [*None: Any, **None: Any], Any], list[ApplicationCommandInteractionDataOption])")  [no-any-expr]
+ discord/app_commands/tree.py:1221:28: error: Expression type contains "Any" (has type "(Command[Any, [*Any, **Any], Any], list[ApplicationCommandInteractionDataOption])")  [no-any-expr]
- discord/app_commands/tree.py:1221:28: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ discord/app_commands/tree.py:1221:28: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any]")  [no-any-expr]
- discord/app_commands/tree.py:1224:35: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ discord/app_commands/tree.py:1224:35: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any]")  [no-any-expr]
- discord/app_commands/tree.py:1240:23: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ discord/app_commands/tree.py:1240:23: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any]")  [no-any-expr]
- discord/app_commands/tree.py:1243:77: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ discord/app_commands/tree.py:1243:77: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any]")  [no-any-expr]
- discord/app_commands/tree.py:1248:19: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ discord/app_commands/tree.py:1248:19: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any]")  [no-any-expr]
- discord/app_commands/tree.py:1251:19: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ discord/app_commands/tree.py:1251:19: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any]")  [no-any-expr]
- discord/app_commands/tree.py:1255:77: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ discord/app_commands/tree.py:1255:77: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any]")  [no-any-expr]
- discord/app_commands/commands.py:493:5: error: Type of decorated function contains type "Any" ("(self: Parameter) -> Command[Any, [*None: Any, **None: Any], Any]")  [no-any-decorated]
+ discord/app_commands/commands.py:493:5: error: Type of decorated function contains type "Any" ("(self: Parameter) -> Command[Any, [*Any, **Any], Any]")  [no-any-decorated]
- discord/app_commands/commands.py:494:16: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ discord/app_commands/commands.py:494:16: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any]")  [no-any-expr]
- discord/app_commands/commands.py:1442:16: error: Expression type contains "Any" (has type "list[Command[Any, [*None: Any, **None: Any], Any] | Group]")  [no-any-expr]
+ discord/app_commands/commands.py:1442:16: error: Expression type contains "Any" (has type "list[Command[Any, [*Any, **Any], Any] | Group]")  [no-any-expr]
- discord/app_commands/commands.py:1450:13: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | Group")  [no-any-expr]
+ discord/app_commands/commands.py:1450:13: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | Group")  [no-any-expr]
- discord/app_commands/commands.py:1450:26: error: Expression type contains "Any" (has type "list[Command[Any, [*None: Any, **None: Any], Any] | Group]")  [no-any-expr]
+ discord/app_commands/commands.py:1450:26: error: Expression type contains "Any" (has type "list[Command[Any, [*Any, **Any], Any] | Group]")  [no-any-expr]
- discord/app_commands/commands.py:1451:20: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | Group")  [no-any-expr]
+ discord/app_commands/commands.py:1451:20: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | Group")  [no-any-expr]
- discord/app_commands/commands.py:1452:48: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | Group")  [no-any-expr]
+ discord/app_commands/commands.py:1452:48: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | Group")  [no-any-expr]
- discord/app_commands/commands.py:1453:27: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | Group")  [no-any-expr]
+ discord/app_commands/commands.py:1453:27: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | Group")  [no-any-expr]
- discord/app_commands/commands.py:1455:20: error: Expression type contains "Any" (has type "list[Command[Any, [*None: Any, **None: Any], Any] | Group]")  [no-any-expr]
+ discord/app_commands/commands.py:1455:20: error: Expression type contains "Any" (has type "list[Command[Any, [*Any, **Any], Any] | Group]")  [no-any-expr]
- discord/app_commands/commands.py:1571:9: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | Group")  [no-any-expr]
+ discord/app_commands/commands.py:1571:9: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | Group")  [no-any-expr]
- discord/app_commands/commands.py:1571:22: error: Expression type contains "Any" (has type "list[Command[Any, [*None: Any, **None: Any], Any] | Group]")  [no-any-expr]
+ discord/app_commands/commands.py:1571:22: error: Expression type contains "Any" (has type "list[Command[Any, [*Any, **Any], Any] | Group]")  [no-any-expr]
- discord/app_commands/commands.py:1574:17: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | Group")  [no-any-expr]
+ discord/app_commands/commands.py:1574:17: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | Group")  [no-any-expr]
- discord/app_commands/commands.py:1574:17: error: Expression type contains "Any" (has type "Command[Untyped, Untyped, Untyped] | Group | Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]
+ discord/app_commands/commands.py:1574:17: error: Expression type contains "Any" (has type "Command[Untyped, Untyped, Untyped] | Group | Command[Any, [*Any, **Any], Any]")  [no-any-expr]
- discord/app_commands/commands.py:1576:22: error: Expression type contains "Any" (has type "Command[Any, [*None: Any, **None: Any], Any] | Group")  [no-any-expr]
+ discord/app_commands/commands.py:1576:22: error: Expression type contains "Any" (has type "Command[Any, [*Any, **Any], Any] | Group")  [no-any-expr]
- discord/app_commands/commands.py:1579:28: error: Expression type contains "Any" (has type "Command[Untyped, Untyped, Untyped] | Group | Command[Any, [*None: Any, **None: Any], Any]")  [no-any-expr]```</details>

... (truncated 333 lines) ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

error messages for callable types say *None and **None
2 participants